pip-webui
Version:
HTML5 UI for LOB applications
23 lines (18 loc) • 565 B
JavaScript
/**
* @file Routing progress control
* @description
* This progress control is enabled by ui router
* while switching between pages
* @copyright Digital Living Software Corp. 2014-2016
*/
(function (angular) {
'use strict';
var thisModule = angular.module('pipRoutingProgress', ['ngMaterial']);
thisModule.directive('pipRoutingProgress', function () {
return {
restrict: 'EA',
replace: true,
templateUrl: 'progress/routing_progress.html'
};
});
})(window.angular);