mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 09:57:38 +01:00
TinyMCE wpViews: fix typos in the conditional checking which stylesheets to import.
Props mattheu. See #31464. Built from https://develop.svn.wordpress.org/trunk@31757 git-svn-id: http://core.svn.wordpress.org/trunk@31738 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e7131def4d
commit
036f131b14
@ -478,8 +478,8 @@ window.wp = window.wp || {};
|
||||
), function( link ) {
|
||||
if (
|
||||
link.href &&
|
||||
link.href.indexOf( 'skins/lightgray/content.min.css' ) >= 0 &&
|
||||
link.href.indexOf( 'skins/wordpress/wp-content.css' ) >= 0
|
||||
link.href.indexOf( 'skins/lightgray/content.min.css' ) === -1 &&
|
||||
link.href.indexOf( 'skins/wordpress/wp-content.css' ) === -1
|
||||
) {
|
||||
styles += dom.getOuterHTML( link );
|
||||
}
|
||||
|
2
wp-includes/js/mce-view.min.js
vendored
2
wp-includes/js/mce-view.min.js
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-alpha-31756';
|
||||
$wp_version = '4.2-alpha-31757';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user