doc/themes/learn4/app/history.js
2020-11-14 16:37:58 +01:00

9 lines
202 B
JavaScript

import $ from 'jquery';
// History
$(document).on('click', '[data-clear-history-toggle]', (event) => {
event.preventDefault();
window.sessionStorage.clear();
window.location.reload();
});