Make WordPress Core

Ticket #27761: 27761.diff

File 27761.diff, 572 bytes (added by morganestes, 11 years ago)

dashboard.js

  • wp-admin/js/dashboard.js

     
    149149                        'display': 'none'
    150150                });
    151151
    152                 // propertychange is for IE < 9
    153                 editor.on('focus input propertychange', function() {
     152                // propertychange breaks IE < 9 in 3.9
     153                editor.on('focus input', function() {
    154154                        var $this = $(this),
    155155                                // &nbsp; is to ensure that the height of a final trailing newline is included.
    156156                                textareaContent = $this.val() + '&nbsp;',