mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
Fix description hidden in details mode
This commit is contained in:
parent
666be26ca7
commit
92406f797b
1 changed files with 4 additions and 2 deletions
|
|
@ -1432,8 +1432,8 @@ jQuery(function($){
|
|||
$t.addClass('tg').find('>*:not(:first-child)').hide();
|
||||
}
|
||||
});
|
||||
var details = $('.x .dsTg td.tg>*:not(:first-child),.x .dsTg .rx_detail_marks').hide();
|
||||
var simples = $('.x .dsTg td.tg>*:not(:first-child),.x .dsTg .rx_simple_marks').show();
|
||||
var details = $('.x .dsTg td.tg>*:not(:first-child), .x .dsTg .rx_detail_marks').hide();
|
||||
var simples = $('.x .dsTg .rx_simple_marks').show();
|
||||
var simpleBtnFn = function(){
|
||||
details.hide();
|
||||
simples.show();
|
||||
|
|
@ -1450,6 +1450,8 @@ jQuery(function($){
|
|||
detailBtn.click(detailBtnFn);
|
||||
if($(window).width() > 980) {
|
||||
detailBtnFn();
|
||||
} else {
|
||||
simpleBtnFn();
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue