missing semicolon

This commit is contained in:
Kyle Spearrin 2016-12-27 00:22:44 -05:00
parent 9d44491931
commit 33dbbc09c3
1 changed files with 1 additions and 1 deletions

View File

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