mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 19:42:15 +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();
|
$t.addClass('tg').find('>*:not(:first-child)').hide();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
var details = $('.x .dsTg td.tg>*:not(:first-child),.x .dsTg .rx_detail_marks').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 simples = $('.x .dsTg .rx_simple_marks').show();
|
||||||
var simpleBtnFn = function(){
|
var simpleBtnFn = function(){
|
||||||
details.hide();
|
details.hide();
|
||||||
simples.show();
|
simples.show();
|
||||||
|
|
@ -1450,6 +1450,8 @@ jQuery(function($){
|
||||||
detailBtn.click(detailBtnFn);
|
detailBtn.click(detailBtnFn);
|
||||||
if($(window).width() > 980) {
|
if($(window).width() > 980) {
|
||||||
detailBtnFn();
|
detailBtnFn();
|
||||||
|
} else {
|
||||||
|
simpleBtnFn();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue