TinyMCE: Improve the previews for shortcodes.
Merge of [41395] to the 4.5 branch. Built from https://develop.svn.wordpress.org/branches/4.5@41438 git-svn-id: http://core.svn.wordpress.org/branches/4.5@41271 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cda7d5bac0
commit
c3844666a2
|
@ -155,8 +155,6 @@
|
||||||
encodedText,
|
encodedText,
|
||||||
instance;
|
instance;
|
||||||
|
|
||||||
text = tinymce.DOM.decode( text );
|
|
||||||
|
|
||||||
if ( ! force ) {
|
if ( ! force ) {
|
||||||
instance = this.getInstance( text );
|
instance = this.getInstance( text );
|
||||||
|
|
||||||
|
@ -424,7 +422,7 @@
|
||||||
var selected = node === editor.selection.getNode(),
|
var selected = node === editor.selection.getNode(),
|
||||||
$viewNode;
|
$viewNode;
|
||||||
|
|
||||||
if ( ! this.loader && $( node ).text() !== this.text ) {
|
if ( ! this.loader && $( node ).text() !== tinymce.DOM.decode( this.text ) ) {
|
||||||
editor.dom.setAttrib( node, 'data-wpview-marker', null );
|
editor.dom.setAttrib( node, 'data-wpview-marker', null );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -496,6 +494,14 @@
|
||||||
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver,
|
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver,
|
||||||
self = this;
|
self = this;
|
||||||
|
|
||||||
|
if ( body.indexOf( '[' ) !== -1 && body.indexOf( ']' ) !== -1 ) {
|
||||||
|
var shortcodesRegExp = new RegExp( '\\[\\/?(?:' + window.mceViewL10n.shortcodes.join( '|' ) + ')[^\\]]*?\\]', 'g' );
|
||||||
|
// Escape tags inside shortcode previews.
|
||||||
|
body = body.replace( shortcodesRegExp, function( match ) {
|
||||||
|
return match.replace( /</g, '<' ).replace( />/g, '>' );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
this.getNodes( function( editor, node, contentNode ) {
|
this.getNodes( function( editor, node, contentNode ) {
|
||||||
var dom = editor.dom,
|
var dom = editor.dom,
|
||||||
styles = '',
|
styles = '',
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -842,6 +842,9 @@ function wp_just_in_time_script_localization() {
|
||||||
'blog_id' => get_current_blog_id(),
|
'blog_id' => get_current_blog_id(),
|
||||||
) );
|
) );
|
||||||
|
|
||||||
|
wp_localize_script( 'mce-view', 'mceViewL10n', array(
|
||||||
|
'shortcodes' => ! empty( $GLOBALS['shortcode_tags'] ) ? array_keys( $GLOBALS['shortcode_tags'] ) : array()
|
||||||
|
) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue