WIP: Aureplop/kpsul js refactor #501

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

View file

@ -93,7 +93,7 @@ $(document).ready(function() {
history.update_data(data); history.update_data(data);
} }
history.reset(); Config.reset(history.reset.bind(history));
}); });
</script> </script>

View file

@ -151,7 +151,8 @@ $(document).ready(function() {
} }
updateHistory();
Config.reset(updateHistory);
}); });
</script> </script>

View file

@ -77,7 +77,7 @@ $(document).ready(function() {
} }
history.reset(); Config.reset(history.reset.bind(history));
}); });
</script> </script>