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:
parent
e1cf2b8523
commit
f93a197089
|
@ -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 {
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue