1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 10:43:35 +00:00

moved popup utils to utilsService

This commit is contained in:
Kyle Spearrin
2016-09-26 18:41:20 -04:00
parent 107c480913
commit a59f7a4afc
12 changed files with 64 additions and 64 deletions

View File

@@ -1,9 +1,9 @@
angular
.module('bit.settings')
.controller('settingsAddFolderController', function ($scope, $q, folderService, $state, toastr) {
.controller('settingsAddFolderController', function ($scope, $q, folderService, $state, toastr, utilsService) {
$scope.folder = {};
popupUtils.initListSectionItemListeners();
utilsService.initListSectionItemListeners($(document));
$('#name').focus();
$scope.savePromise = null;