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:
Andrew Ozz 2015-03-12 20:08:27 +00:00
parent e7131def4d
commit 036f131b14
3 changed files with 4 additions and 4 deletions

View File

@ -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 );
}

File diff suppressed because one or more lines are too long

View File

@ -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.