mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fix #1362 포인트 모듈을 사용하지 않아도 하단에 설정이 뜨는 문제 고침
This commit is contained in:
parent
e588086b29
commit
d8a340a90e
1 changed files with 16 additions and 0 deletions
|
|
@ -237,3 +237,19 @@
|
||||||
<p id="pointReCal"></p>
|
<p id="pointReCal"></p>
|
||||||
</section>
|
</section>
|
||||||
</form>
|
</form>
|
||||||
|
<script>
|
||||||
|
jQuery(function($){
|
||||||
|
var point_module_cfg = $('#point_module_config_form .default .x_control-group:not(.module_io), #point_module_config_form .section:not(.default),.x_nav-tabs>li:not(.x_active)');
|
||||||
|
if(!$('#able_module').is(':checked'))
|
||||||
|
{
|
||||||
|
point_module_cfg.hide();
|
||||||
|
}
|
||||||
|
$('#able_module').change(function(){
|
||||||
|
if($(this).is(':checked')){
|
||||||
|
point_module_cfg.slideDown(200);
|
||||||
|
} else {
|
||||||
|
point_module_cfg.slideUp(200);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue