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

activityindicator.directive.js « activity-indicator « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4417cea7ac0209889f2ff2c60df7a102f6a37550 (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
30
31
/*!
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Shows a general loading message while [loading] is set to true.
 *
 * @param {Boolean} loading  If true, the activity indicator is shown, otherwise the indicator is hidden.
 *
 * Example:
 * <div piwik-activity-indicator loading="true|false"></div>
 */
(function () {
    angular.module('piwikApp').directive('piwikActivityIndicator', piwikActivityIndicator);

    piwikActivityIndicator.$inject = ['piwik'];

    function piwikActivityIndicator(piwik){
        return {
            restrict: 'A',
            transclude: true,
            scope: {
                loading: '='
            },
            templateUrl: 'plugins/CoreHome/angularjs/activity-indicator/activityindicator.html?cb=' + piwik.cacheBuster
        };
    }
})();