Changeset 31766
- Timestamp:
- 03/13/2015 05:19:28 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/twemoji.js
r31758 r31766 327 327 allText = grabAllTextNodes(node, []), 328 328 length = allText.length, 329 modified = false,329 modified, 330 330 fragment, 331 331 subnode, … … 340 340 src; 341 341 while (length--) { 342 modified = false; 342 343 fragment = document.createDocumentFragment(); 343 344 subnode = allText[length]; … … 386 387 // anything else surrounding such text 387 388 subnode.parentNode.replaceChild(fragment, subnode); 388 modified = false;389 389 } 390 390 } -
trunk/src/wp-includes/script-loader.php
r31758 r31766 425 425 $scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models', 'media-audiovideo', 'wp-playlist' ), false, 1 ); 426 426 427 $scripts->add( 'twemoji', "/wp-includes/js/twemoji$suffix.js", array(), '1.3. 0', 1 );427 $scripts->add( 'twemoji', "/wp-includes/js/twemoji$suffix.js", array(), '1.3.1', 1 ); 428 428 $scripts->add( 'emoji', "/wp-includes/js/wp-emoji$suffix.js", array( 'twemoji' ), false, 1 ); 429 429 did_action( 'init' ) && $scripts->localize( 'emoji', '_wpemojiSettings', array(
Note: See TracChangeset
for help on using the changeset viewer.