Make WordPress Core


Ignore:
Timestamp:
05/29/2014 12:58:11 AM (11 years ago)
Author:
azaozz
Message:

TinyMCE: update to 4.0.28. Also includes https://github.com/tinymce/tinymce/commit/43fff5b45344e0101d7d75d8e3c01e9758f0d20f. Part-props avryl for the patch on #27941, fixes #28391, #27941.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

    r28576 r28606  
    343343    editor.on( 'SaveContent', function( e ) {
    344344        // If editor is hidden, we just want the textarea's value to be saved
    345         if ( ! editor.inline && ! tinymce.DOM.isHidden( editor.id ) ) {
     345        if ( ! editor.inline && editor.isHidden() ) {
    346346            e.content = e.element.value;
    347347            return;
Note: See TracChangeset for help on using the changeset viewer.