xref: /openbmc/phosphor-webui/app/common/directives/loader.js (revision 428375e827eae425c6e08dcc27ccdc13c035e6f9)
1*428375e8SMichael Daviswindow.angular && (function (angular) {
2*428375e8SMichael Davis    'use strict';
3*428375e8SMichael Davis
4*428375e8SMichael Davis    angular
5*428375e8SMichael Davis        .module('app.common.directives')
6*428375e8SMichael Davis        .directive('loader', function () {
7*428375e8SMichael Davis            return {
8*428375e8SMichael Davis                'restrict': 'E',
9*428375e8SMichael Davis                'templateUrl': 'common/directives/loader.html',
10*428375e8SMichael Davis                scope: {
11*428375e8SMichael Davis                    loading: '='
12*428375e8SMichael Davis                }
13*428375e8SMichael Davis            };
14*428375e8SMichael Davis        });
15*428375e8SMichael Davis
16*428375e8SMichael Davis})(window.angular);