Changeset 32336
- Timestamp:
- 05/03/2015 08:17:38 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/editor-expand.js
r31725 r32336 16 16 $textTop = $( '#ed_toolbar' ), 17 17 $textEditor = $( '#content' ), 18 $textEditorClone = $( '<div id="content-textarea-clone" ></div>' ),18 $textEditorClone = $( '<div id="content-textarea-clone" class="wp-no-emoji"></div>' ), 19 19 $bottom = $( '#post-status-info' ), 20 20 $menuBar = $(), -
trunk/src/wp-includes/js/wp-emoji.js
r32335 r32336 71 71 } 72 72 73 if ( node && node.nodeType === 1 && test( node.textContent ) ) { 73 if ( ! node || ( node.className && node.className.indexOf( 'wp-no-emoji' ) !== -1 ) ) { 74 continue; 75 } 76 77 if ( node.nodeType === 1 && test( node.textContent ) ) { 74 78 parse( node ); 75 79 }
Note: See TracChangeset
for help on using the changeset viewer.