xref: /openbmc/phosphor-webui/app/common/directives/loader.js (revision afc8a799627b71bba716e207cee8185852a6d390)
1window.angular && (function(angular) {
2  'use strict';
3
4  angular.module('app.common.directives').directive('loader', function() {
5    return {
6      'restrict': 'E',
7      'template': require('./loader.html'),
8      scope: {loading: '='}
9    };
10  });
11})(window.angular);
12