(function () { 'use strict'; var name = 'adLoadingIndicator'; angular.module('app.directive') .directive('adLoadingIndicator', [function () { return { templateUrl: 'directive/' + name + '/' + name + '.html', scope: { data: '=adLoadingIndicator' } }; }]); })();