'use strict'; define(['app'], function (app) { app.directive('progressSpinner', ["$log", "$rootScope", function ($log, $rootScope) { return { restrict : 'E', replace : true, templateUrl : 'custom_components/progressSpinner/progressSpinner.html', link : function (scope, element, attrs) { } }; }]); });