TinyMCE: prevent error in the wptextpattern plugin when the first child node in a paragraph is not a text node.

See #31441;

git-svn-id: https://develop.svn.wordpress.org/trunk@32960 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-06-26 23:18:16 +00:00
parent a0ebf84f40
commit 4affc95146
1 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,10 @@
}
}
if ( ! child ) {
return;
}
if ( ! child.nodeValue ) {
child = child.nextSibling;
}