Customize: Ensure Close button actually closes customizer (instead of going back) after switching to a different theme inside a `customize-loader` iframe.
Fixes #38833. Built from https://develop.svn.wordpress.org/trunk@39271 git-svn-id: http://core.svn.wordpress.org/trunk@39211 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4664f80711
commit
c2bc6df69a
|
@ -1450,7 +1450,7 @@
|
||||||
request = api.requestChangesetUpdate();
|
request = api.requestChangesetUpdate();
|
||||||
request.done( function() {
|
request.done( function() {
|
||||||
$( window ).off( 'beforeunload.customize-confirm' );
|
$( window ).off( 'beforeunload.customize-confirm' );
|
||||||
window.location.href = urlParser.href;
|
top.location.href = urlParser.href;
|
||||||
} );
|
} );
|
||||||
request.fail( function() {
|
request.fail( function() {
|
||||||
overlay.removeClass( 'customize-loading' );
|
overlay.removeClass( 'customize-loading' );
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-beta4-39270';
|
$wp_version = '4.7-beta4-39271';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue