From e2c2f6a402cd1bede60555c60cc18f777d2df50b Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 9 Dec 2013 01:26:26 +0000 Subject: [PATCH] Don't set the theme overlay active state in the Theme view, as it overwrites the same work in the Details view. fixes #26481. git-svn-id: https://develop.svn.wordpress.org/trunk@26815 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/theme.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-admin/js/theme.js b/src/wp-admin/js/theme.js index 4d4a6b256f..ba1f7fd1ad 100644 --- a/src/wp-admin/js/theme.js +++ b/src/wp-admin/js/theme.js @@ -205,7 +205,6 @@ themes.view.Theme = wp.Backbone.View.extend({ activeTheme: function() { if ( this.model.get( 'active' ) ) { this.$el.addClass( 'active' ); - $( '.theme-overlay' ).addClass( 'active' ); } },