Editor: Fix JSHint errors after [41783].
See #42059. git-svn-id: https://develop.svn.wordpress.org/trunk@41785 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3c72ff101f
commit
944d28b6e4
|
@ -101,10 +101,10 @@ window.wp = window.wp || {};
|
|||
|
||||
var keepSelection = false;
|
||||
if ( editor ) {
|
||||
keepSelection = editor.getParam( 'wp_keep_scroll_position' )
|
||||
keepSelection = editor.getParam( 'wp_keep_scroll_position' );
|
||||
} else {
|
||||
keepSelection = window.tinyMCEPreInit.mceInit[ id ] &&
|
||||
window.tinyMCEPreInit.mceInit[ id ]['wp_keep_scroll_position']
|
||||
window.tinyMCEPreInit.mceInit[ id ].wp_keep_scroll_position;
|
||||
}
|
||||
|
||||
if ( keepSelection ) {
|
||||
|
@ -321,7 +321,7 @@ window.wp = window.wp || {};
|
|||
* @param {string} content The content we want to scan for shortcodes
|
||||
*/
|
||||
function getShortCodePositionsInText( content ) {
|
||||
var allShortcodes = getShortcodesInText( content );
|
||||
var allShortcodes = getShortcodesInText( content ), shortcodeInfo;
|
||||
|
||||
if ( allShortcodes.length === 0 ) {
|
||||
return [];
|
||||
|
@ -348,7 +348,8 @@ window.wp = window.wp || {};
|
|||
* In addition, if the shortcode will get rendered as plain text ( see above ),
|
||||
* we can treat it as text and use the selection markers in it.
|
||||
*/
|
||||
var isPreviewable = ! showAsPlainText && isShortcodePreviewable( shortcodeMatch[2] ),
|
||||
var isPreviewable = ! showAsPlainText && isShortcodePreviewable( shortcodeMatch[2] );
|
||||
|
||||
shortcodeInfo = {
|
||||
shortcodeName: shortcodeMatch[2],
|
||||
showAsPlainText: showAsPlainText,
|
||||
|
|
Loading…
Reference in New Issue