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

anonymize-log-data.directive.js « anonymize-log-data « angularjs « PrivacyManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae990dc7a3a749d8e5c2afa6d47436364309ae5c (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
28
29
/*!
 * 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 matomo-anonymize-log-data>
 */
(function () {
    angular.module('piwikApp').directive('matomoAnonymizeLogData', anonymizeLogData);

    anonymizeLogData.$inject = ['piwik'];

    function anonymizeLogData(piwik){
        return {
            restrict: 'A',
            scope: {},
            templateUrl: 'plugins/PrivacyManager/angularjs/anonymize-log-data/anonymize-log-data.directive.html?cb=' + piwik.cacheBuster,
            controller: 'AnonymizeLogDataController',
            controllerAs: 'anonymizeLogData',
            compile: function (element, attrs) {

            }
        };
    }
})();