Don't use event delegation for sync button

This commit is contained in:
creesch 2018-03-31 22:28:39 +02:00
parent 95dc519019
commit 63c84cd362
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ function initialize() {
} }
}); });
$settings.on("click", "#forceSync", () => { $settings.find("#forceSync").on("click", () => {
syncAllSettings(true); syncAllSettings(true);
}); });