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

list.directive.js « manage « angularjs « CustomDimensions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c01eb0330e3e05dc2277836935fc19269a4a0a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Usage:
 * <div piwik-custom-dimensions-list>
 */
(function () {
    angular.module('piwikApp').directive('piwikCustomDimensionsList', piwikCustomDimensionsList);

    piwikCustomDimensionsList.$inject = ['piwik'];

    function piwikCustomDimensionsList(piwik){

        return {
            restrict: 'A',
            scope: {},
            templateUrl: 'plugins/CustomDimensions/angularjs/manage/list.directive.html?cb=' + piwik.cacheBuster,
            controller: 'CustomDimensionsListController',
            controllerAs: 'dimensionsList'
        };
    }
})();