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