Ticket #7069 (closed defect: fixed)

Opened 6 months ago

Last modified 6 months ago

Autosave does not work in TinyMCE's fullscreen mode

Reported by: mdawaffe Assigned to: azaozz
Priority: high Milestone: 2.6
Component: General Version: 2.6
Severity: normal Keywords: has-patch
Cc:

Description

When writing in TinyMCE's fullscreen mode, autosave does not work.

No matter what I type, the same post content is being read by autosave and sent to the server via AJAX every time.

I believe the issue is that tinyMCE.triggerSave() does not work correctly in fullscreen mode.

Attachments

7069.patch (0.7 kB) - added by azaozz on 05/31/08 05:19:29.

Change History

05/31/08 05:19:21 changed by azaozz

  • status changed from new to assigned.

Yes, fullscreen mode is actually another instance of TinyMCE that runs on top of the old one, so the content is not saved in the same textarea.

The patch copies the content from the fullscreen editor and inserts it in the old instance before triggerSave().

05/31/08 05:19:29 changed by azaozz

  • attachment 7069.patch added.

05/31/08 05:20:59 changed by azaozz

  • keywords set to has-patch.

06/03/08 08:15:41 changed by ryan

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [8037]) Enable autosave for fullscreen mode. Props azaozz. fixes #7069