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-23 14:04:55 +0300
committerbrantje <brantje@gmail.com>2016-10-23 14:10:52 +0300
commitc0de19650a6f5398fbfd443240f955ffb3b9e80d (patch)
treeaf10d64fc4297497912ae2ac9024b8fecfcd202d /js
parent3e88ff19c4c54791a5fa46b0024a895d8df1919b (diff)
Add test for bookmarkletCtrl
Signed-off-by: brantje <brantje@gmail.com> Add test templates for other controllers
Diffstat (limited to 'js')
-rw-r--r--js/app/controllers/bookmarklet.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/app/controllers/bookmarklet.js b/js/app/controllers/bookmarklet.js
index 8f76385e..b137beb1 100644
--- a/js/app/controllers/bookmarklet.js
+++ b/js/app/controllers/bookmarklet.js
@@ -32,8 +32,8 @@
* Controller of the passmanApp
*/
angular.module('passmanApp')
- .controller('BookmarkletCtrl', ['$scope', '$rootScope', '$location', 'VaultService', 'CredentialService', 'SettingsService', 'NotificationService', 'EncryptService', 'TagService', 'FileService',
- function ($scope, $rootScope, $location, VaultService, CredentialService, SettingsService, NotificationService, EncryptService, TagService, FileService) {
+ .controller('BookmarkletCtrl', ['$scope', '$rootScope', '$location', 'VaultService', 'CredentialService', 'SettingsService', 'NotificationService', 'EncryptService', 'TagService', 'FileService', 'ShareService',
+ function ($scope, $rootScope, $location, VaultService, CredentialService, SettingsService, NotificationService, EncryptService, TagService, FileService, ShareService) {
$scope.active_vault = false;
$scope.http_warning_hidden = true;