Customize: Fix live preview button in theme details modal so it includes target theme.

Fixes issue introduced in [38813].

Props celloexpressions.
See #37661.
Fixes #38475.

Built from https://develop.svn.wordpress.org/trunk@38889


git-svn-id: http://core.svn.wordpress.org/trunk@38832 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Weston Ruter
2016-10-24 19:15:29 +00:00
parent e2c22fa367
commit 1129311849
4 changed files with 8 additions and 23 deletions

View File

@@ -1186,7 +1186,7 @@
// Preview installed themes.
section.container.on( 'click', '.theme-actions .preview-theme', function() {
var themeId = $( this ).data( 'themeId' );
var themeId = $( this ).data( 'slug' );
$( '.wp-full-overlay' ).addClass( 'customize-loading' );
api.panel( 'themes' ).loadThemePreview( themeId ).fail( function() {
@@ -1735,7 +1735,7 @@
* @param {Object} theme
*/
showDetails: function ( theme, callback ) {
var section = this, link;
var section = this;
callback = callback || function(){};
section.currentTheme = theme.id;
section.overlay.html( section.template( theme ) )
@@ -1745,21 +1745,6 @@
section.containFocus( section.overlay );
section.updateLimits();
wp.a11y.speak( api.settings.l10n.announceThemeDetails.replace( '%s', theme.name ) );
link = section.overlay.find( '.inactive-theme > a' );
link.on( 'click', function( event ) {
event.preventDefault();
// Short-circuit if request is currently being made.
if ( link.hasClass( 'disabled' ) ) {
return;
}
link.addClass( 'disabled' );
api.panel( 'themes' ).loadThemePreview( theme.id ).fail( function() {
link.removeClass( 'disabled' );
} );
} );
callback();
},

File diff suppressed because one or more lines are too long