Fix typo in wp-emoji.js.

See #35977.

git-svn-id: https://develop.svn.wordpress.org/trunk@36981 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2016-03-13 20:29:45 +00:00
parent a637421857
commit 98c197f09f
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@
*/
while( node.nextSibling && 3 === node.nextSibling.nodeType ) {
node.nodeValue = node.nodeValue + node.nextSibling.nodeValue;
node.parentNode.removedChild( node.nextSibling );
node.parentNode.removeChild( node.nextSibling );
}
}