Created
October 1, 2020 10:18
-
-
Save tatsuyaueda/09308258d417241670a0c740558690e9 to your computer and use it in GitHub Desktop.
redmine_wysiwyg_editorで「このページを離れる前に保存しますか?」を表示するスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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