1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

move initListSectionItemListeners to popup utils

This commit is contained in:
Kyle Spearrin
2018-01-11 15:21:43 -05:00
parent 680c937624
commit 9921d6dba3
17 changed files with 134 additions and 121 deletions

View File

@@ -1,10 +1,10 @@
angular
.module('bit.accounts')
.controller('accountsHintController', function ($scope, $state, apiService, toastr, $q, platformUtilsService,
.controller('accountsHintController', function ($scope, $state, apiService, toastr, $q, popupUtilsService,
$analytics, i18nService, $timeout) {
$timeout(function () {
platformUtilsService.initListSectionItemListeners(document, angular);
popupUtilsService.initListSectionItemListeners(document, angular);
document.getElementById('email').focus();
}, 500);