JS tweak. Closes #1918.

This commit is contained in:
Mike Jolley 2012-12-05 15:05:50 +00:00
parent bcc91f586d
commit a6a685fd6e
2 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ jQuery( function($){
// TABS
$('ul.wc-tabs').show();
$('div.panel-wrap').each(function(){
$('div.panel:not(div.panel:first)', this).hide();
$(this).find('div.panel:not(:first)').hide();
});
$('ul.wc-tabs a').click(function(){
var panel_wrap = $(this).closest('div.panel-wrap');

File diff suppressed because one or more lines are too long