Make WordPress Core

Ticket #19649: 19649.diff

File 19649.diff, 512 bytes (added by garyc40, 13 years ago)
  • wp-admin/js/wp-fullscreen.dev.js

    PubSub.prototype.publish = function( topic, args ) { 
    727727                newheight = txt.scrollHeight > 300 ? txt.scrollHeight : 300;
    728728
    729729                if ( newheight != api.oldheight ) {
    730                         txt.style.height = newheight + 'px';
     730                        txt.style.height = (newheight) + 'px';
    731731                        api.oldheight = newheight;
    732732                }
    733733        };