Changeset 32710
- Timestamp:
- 06/08/2015 07:53:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/mce-view.js
r32678 r32710 157 157 instance; 158 158 159 text = tinymce.DOM.decode( text ), 160 encodedText = encodeURIComponent( text ), 161 instance = this.getInstance( encodedText ); 159 text = tinymce.DOM.decode( text ); 160 instance = this.getInstance( text ); 162 161 163 162 if ( instance ) { 164 163 return instance; 165 164 } 165 166 encodedText = encodeURIComponent( text ); 166 167 167 168 options = _.extend( options || {}, {
Note: See TracChangeset
for help on using the changeset viewer.