Fix selector for the "Live Widget Previews" feature pointer.

props rzen.
fixes #30158.
Built from https://develop.svn.wordpress.org/trunk@30332


git-svn-id: http://core.svn.wordpress.org/trunk@30331 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2014-11-13 12:50:22 +00:00
parent e1cf2b8523
commit f93a197089
2 changed files with 2 additions and 2 deletions

View File

@ -2032,7 +2032,7 @@ final class WP_Internal_Pointers {
$selector = '.theme.active .customize';
$position = array( 'edge' => is_rtl() ? 'right' : 'left', 'align' => 'center' );
} else {
$selector = 'a[href="customize.php"]';
$selector = 'a[href^="customize.php"]';
if ( is_rtl() ) {
$position = array( 'edge' => 'right', 'align' => 'center', 'my' => 'right-5px' );
} else {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30331';
$wp_version = '4.1-alpha-30332';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.