##// END OF EJS Templates
Warn me when leaving a page with unsaved text doesn't work when editing an update note (#14615)....
Jean-Philippe Lang -
r11854:cb90cdcc150c
parent child
Show More
@@ -538,7 +538,7 function warnLeavingUnsaved(message) {
538 $('form').submit(function(){
538 $('form').submit(function(){
539 $('textarea').removeData('changed');
539 $('textarea').removeData('changed');
540 });
540 });
541 $('textarea').change(function(){
541 $('textarea').live('change', function(){
542 $(this).data('changed', 'changed');
542 $(this).data('changed', 'changed');
543 });
543 });
544 window.onbeforeunload = function(){
544 window.onbeforeunload = function(){
General Comments 0
You need to be logged in to leave comments. Login now