1
0
mirror of https://github.com/bitwarden/browser synced 2024-12-22 16:12:07 +01:00

missing semicolon

This commit is contained in:
Kyle Spearrin 2016-12-27 00:22:44 -05:00
parent 9d44491931
commit 33dbbc09c3

View File

@ -13,7 +13,7 @@
if (syncOnLoad) {
$scope.$on('$viewContentLoaded', function () {
$timeout(function () {
syncService.fullSync(function () { })
syncService.fullSync(function () { });
}, 0);
});
}