mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 09:39:58 +09:00
Issue 1730: 1.5.2 에서 업데이트 현황이 있는 경우 관리자페이지 첫화면 깨지는 버그 수정법
Issue 1731: [1.5.2] 여전히 아이패드(iPad)로 글을 쓸 때, 글이 본문 틀 밖으로 벗어납니다. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10454 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
91f2524b68
commit
0e804c1b52
5 changed files with 27 additions and 33 deletions
|
|
@ -5813,18 +5813,21 @@ xe.XE_Table = $.Class({
|
|||
}
|
||||
}).extend(xe.XE_Table);
|
||||
|
||||
})(jQuery);
|
||||
|
||||
// Auto Resize Checkbox Toggle Class
|
||||
$('.input_auto>input').change(function(){
|
||||
setTimeout(function(){
|
||||
if($('.input_control').is(':hidden')){
|
||||
$('.input_auto').addClass('line');
|
||||
} else {
|
||||
$('.input_auto').removeClass('line');
|
||||
}
|
||||
},1);
|
||||
jQuery(function($){
|
||||
$('.input_auto>input').change(function(){
|
||||
setTimeout(function(){
|
||||
if($('.input_control').is(':hidden')){
|
||||
$('.input_auto').addClass('line');
|
||||
} else {
|
||||
$('.input_auto').removeClass('line');
|
||||
}
|
||||
},1);
|
||||
});
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
if (!window.xe) xe = {};
|
||||
|
||||
xe.Editors = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue