Make WordPress Core

Ticket #31441: 31441.13.patch

File 31441.13.patch, 1.1 KB (added by iseulde, 9 years ago)
  • src/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js

     
    3939
    4040                        rng = editor.selection.getRng();
    4141                        node = rng.startContainer;
    42                         text = node.nodeValue;
    4342
    44                         if ( node.nodeType !== 3 ) {
     43                        if ( ! node || node.nodeType !== 3 ) {
    4544                                return;
    4645                        }
    4746
     47                        text = node.nodeValue;
    4848                        parent = editor.dom.getParent( node, 'p' );
    4949
    5050                        if ( ! parent ) {
  • tests/qunit/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js

     
    11( function( $, QUnit, tinymce, _type, setTimeout ) {
    22        var editor;
    33
     4        if ( tinymce.Env.ie < 9 ) {
     5                return;
     6        }
     7
    48        function type() {
    59                var args = arguments;
    610