Welcome to mirror list, hosted at ThFree Co, Russian Federation.

add-entity-dialog.html « sites-list « templates « SitesManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1a16796840ccf9cfdd33b7e1c42bfc8b44e712a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div piwik-dialog="$parent.showAddSiteDialog"
     title="{{ 'SitesManager_ChooseMeasurableTypeHeadline'|translate }}">

    <div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
        <div class="ui-dialog-buttonset">
            <button type="button"
                    ng-repeat="type in availableTypes"
                    title="{{ type.description }}"
                    class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
                    ng-click="addSite(type.id);closeAddMeasurableDialog()"
                    aria-disabled="false">
                <span class="ui-button-text">{{ type.name }}</span>
            </button>
        </div>
    </div>
</div>