Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tiberiuzuld committed Feb 17, 2016
1 parent cd52492 commit d0cbeb5
Show file tree
Hide file tree
Showing 7 changed files with 11,101 additions and 6,277 deletions.
10 changes: 5 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "angular-auto-save-form",
"version": "1.0.0",
"version": "1.0.1",
"main": [
"dist/auto-save-form.js",
"dist/auto-save-form.css"
],
"dependencies": {
"angular": "~1.4.8",
"lodash": "~3.10.1"
"angular": "~1.5.0",
"lodash": "~4.5.0"
},
"devDependencies": {
"angular-material": "~1.0.1",
"angular-mocks": "~1.4.8",
"angular-material": "~1.0.5",
"angular-mocks": "~1.5.0",
"angular-mocke2e-maydelay": "~1.0.0"
},
"homepage": "https://github.io/tiberiuzuld/angular-auto-save-form",
Expand Down
2 changes: 1 addition & 1 deletion dist/auto-save-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
(function () {
'use strict';

autoSaveForm.$inject = ["autoSaveForm"];
angular.module('angular-auto-save-form', [])
.provider('autoSaveForm', autoSaveFormProvider)
.directive('autoSaveForm', autoSaveForm)
Expand Down Expand Up @@ -148,7 +149,6 @@
link: saveFormLink
};
}
autoSaveForm.$inject = ["autoSaveForm"];

/** @ngInject */
function autoSaveFormProperty() {
Expand Down
6 changes: 3 additions & 3 deletions dist/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
(function () {
'use strict';

IndexMocks.$inject = ["$httpBackend"];
angular.module('autoSaveFormApp').run(IndexMocks);

/** @ngInject */
Expand Down Expand Up @@ -40,12 +41,12 @@

$httpBackend.whenGET(/getData/).respond(user);
}
IndexMocks.$inject = ["$httpBackend"];
})();

(function () {
'use strict';

IndexController.$inject = ["$http"];
angular.module('autoSaveFormApp').controller('IndexController', IndexController);

/** @ngInject */
Expand Down Expand Up @@ -74,12 +75,12 @@
return $http.post('/updateDataNormal', formControls);
}
}
IndexController.$inject = ["$http"];
})();

(function () {
'use strict';

config.$inject = ["$logProvider", "$compileProvider", "autoSaveFormProvider"];
angular.module('autoSaveFormApp').config(config);

/** @ngInject */
Expand All @@ -93,6 +94,5 @@
autoSaveFormProvider.setSpinner(true);
autoSaveFormProvider.setSpinnerPosition('top right');
}
config.$inject = ["$logProvider", "$compileProvider", "autoSaveFormProvider"];

})();
Loading

0 comments on commit d0cbeb5

Please sign in to comment.