Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- kiwi.plugin('forgetmealias', function(kiwi, log) {
- kiwi.on('input.command.forgetme', function(event) {
- event.handled = true;
- if (!confirm('Really forget you? This will reset all your settings and refresh your page!')) {
- return;
- }
- kiwi.state.persistence.forgetState();
- window.location.reload();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement