Make WordPress Core

Ticket #20684: 20684.patch

File 20684.patch, 613 bytes (added by SergeyBiryukov, 13 years ago)
  • wp-includes/js/tinymce/plugins/wpfullscreen/editor_plugin_src.js

     
    121121                                if ( tinymce.isIE || tinymce.isWebKit )
    122122                                        myHeight = d.body.scrollHeight;
    123123                                else
    124                                         myHeight = d.body.offsetHeight;
     124                                        myHeight = d.documentElement.offsetHeight;
    125125
    126126                                // Don't make it smaller than 300px
    127127                                resizeHeight = (myHeight > 300) ? myHeight : 300;