1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-26 10:35:48 +02: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);
});
}