Skip to content

Commit

Permalink
Merge pull request typecho#333 from zhulin3141/master
Browse files Browse the repository at this point in the history
fix conflict with bootstrap tab
  • Loading branch information
joyqi committed Nov 7, 2014
2 parents 2b120de + 59f4604 commit 8fd7492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/write-js.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function autoSaveListener () {
$('#edit-secondary .typecho-option-tabs li').click(function() {
$('#edit-secondary .typecho-option-tabs li').removeClass('active');
$(this).addClass('active');
$('.tab-content').addClass('hidden');
$(this).parents('#edit-secondary').find('.tab-content').addClass('hidden');

var selected_tab = $(this).find('a').attr('href'),
selected_el = $(selected_tab).removeClass('hidden');
Expand Down

0 comments on commit 8fd7492

Please sign in to comment.