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

props rzen.
fixes #30158.

git-svn-id: https://develop.svn.wordpress.org/trunk@30332 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-11-13 12:49:42 +00:00
parent 103788b4ad
commit c55a06370b
1 changed files with 1 additions and 1 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 {