2
0

do_stop_exit.js 449 B

123456789101112131415
  1. window.addEventListener('DOMContentLoaded', function() {
  2. if(window.location.pathname.match(/^\/edit\//i)) {
  3. window.onbeforeunload = function() {
  4. data = document.getElementById('content').value;
  5. origin = document.getElementById('origin').value;
  6. if(data !== origin) {
  7. return '';
  8. }
  9. }
  10. }
  11. });
  12. function save_stop_exit() {
  13. window.onbeforeunload = function () { }
  14. }