https://bugzilla.wikimedia.org/show_bug.cgi?id=43910

gavin <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #3 from gavin <[email protected]> ---
I used other way to solve this bug.
I modify modules/ext.Drafts.js.
You have to modify 2 position.
line:121
line:135

BEFORE: 

// Sets timer to save automatically after a period of time
timer = setTimeout(
  'wgDraft.save()', configuration.autoSaveWait * 1000
);

AFTER:

// Sets timer to save automatically after a period of time
timer = setTimeout(
  function () {self.save()}, configuration.autoSaveWait * 1000
);

I use v1.21 .
In IE9 & chrome & firefox,it can work.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to