1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +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

@@ -2,7 +2,7 @@ angular
.module('bit.vault')
.controller('vaultEditSiteController', function ($scope, $state, $stateParams, siteService, folderService,
cryptoService, $q, toastr, SweetAlert) {
cryptoService, $q, toastr, SweetAlert, utilsService) {
var returnScrollY = $stateParams.returnScrollY;
var returnSearchText = $stateParams.returnSearchText;
var siteId = $stateParams.siteId;
@@ -27,7 +27,7 @@ angular
$scope.folders = folders;
});
popupUtils.initListSectionItemListeners();
utilsService.initListSectionItemListeners($(document));
$scope.savePromise = null;
$scope.save = function (model) {