WIP: Aureplop/kpsul js refactor #501

Draft
delobell wants to merge 215 commits from aureplop/kpsul_js_refactor into master
3 changed files with 0 additions and 20 deletions
Showing only changes of commit c2da055b60 - Show all commits

View file

@ -108,12 +108,6 @@ $(document).ready(function() {
khistory.selection.reset();
});
// -----
// Synchronization
// -----
OperationWebSocket.add_handler((data) => khistory.update_data(data));
Config.reset(() => khistory.fetch({'accounts': [{{account.pk}}]}));
});
</script>

View file

@ -136,14 +136,6 @@ $(document).ready(function() {
khistory.selection.reset();
});
// -----
// Synchronization
// -----
OperationWebSocket.add_handler(data => khistory.update_data(data));
Config.reset(updateHistory);
});
</script>

View file

@ -57,12 +57,6 @@ $(document).ready(function() {
khistory.selection.reset();
});
// -----
// Synchronization
// -----
OperationWebSocket.add_handler((data) => khistory.update_data(data));
Config.reset(() => khistory.fetch({'transfersonly': true}));
});