mirror of https://github.com/akveo/blur-admin
fix(progressButtons): fix losing dependencies
parent
b19ad119e6
commit
17ce71f065
|
@ -11,6 +11,7 @@ angular.module('BlurAdmin', [
|
|||
"xeditable",
|
||||
'ui.slimscroll',
|
||||
'ngJsTree',
|
||||
'angular-progress-button-styles',
|
||||
|
||||
'BlurAdmin.theme',
|
||||
'BlurAdmin.pages',
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
.controller('ButtonPageCtrl', ButtonPageCtrl);
|
||||
|
||||
/** @ngInject */
|
||||
function ButtonPageCtrl($scope) {
|
||||
function ButtonPageCtrl($scope, $timeout) {
|
||||
$scope.progressFunction = function() {
|
||||
return $timeout(function() {}, 3000);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue