Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-17 20:29:05 +0300
committerbrantje <brantje@gmail.com>2016-10-17 20:29:05 +0300
commite83bcd32421549ffda6e0aa8b2ef7a38dd55d743 (patch)
tree08461ead7699583403ccc38c016d4992f07156fc /js
parent0d0f5bc7a04695e28e2e04462dfeb0b5484685d8 (diff)
Make scrutinizer happy
Diffstat (limited to 'js')
-rw-r--r--js/app/controllers/menu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/app/controllers/menu.js b/js/app/controllers/menu.js
index c04affaf..495944c1 100644
--- a/js/app/controllers/menu.js
+++ b/js/app/controllers/menu.js
@@ -10,8 +10,8 @@
* Controller of the passmanApp
*/
angular.module('passmanApp')
- .controller('MenuCtrl', ['$scope', 'VaultService', '$location', '$rootScope', 'TagService',
- function ($scope, VaultService, $location, $rootScope, TagService) {
+ .controller('MenuCtrl', ['$scope', 'VaultService', '$location', '$rootScope', 'TagService','SettingsService',
+ function ($scope, VaultService, $location, $rootScope, TagService, SettingsService) {
$rootScope.logout = function () {
SettingsService.setSetting('defaultVaultPass', false);
$rootScope.$broadcast('logout');