Skip to content

Instantly share code, notes, and snippets.

@tatsuyaueda
Created October 1, 2020 10:18
Show Gist options
  • Save tatsuyaueda/09308258d417241670a0c740558690e9 to your computer and use it in GitHub Desktop.
Save tatsuyaueda/09308258d417241670a0c740558690e9 to your computer and use it in GitHub Desktop.
redmine_wysiwyg_editorで「このページを離れる前に保存しますか?」を表示するスクリプト
// path pattern:/issues/.*$
window.addEventListener('beforeunload', (event) => {
// redmine_wysiwyg_editor is Dirty
var mce = tinymce.get('mce_0');
if(mce && mce.isDirty()){
event.preventDefault();
event.returnValue = '';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment