mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
#183 보완 counter 모듈을 사용하지 않을 때 메시지 표시되지 않는 문제 수정
This commit is contained in:
parent
d139cf5d87
commit
da1b59e3e8
2 changed files with 15 additions and 8 deletions
|
|
@ -90,14 +90,6 @@ jQuery(function($)
|
|||
$(this).removeClass('hover').find('>.action').hide();
|
||||
}
|
||||
});
|
||||
|
||||
// check browser version
|
||||
if($.browser.msie == true ) {
|
||||
var arrBrowserVersion = $.browser.version.split('.');
|
||||
if(parseInt(arrBrowserVersion[0]) <= 8) {
|
||||
$('#checkBrowserMessage').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function obj2Array(htObj)
|
||||
|
|
|
|||
|
|
@ -80,5 +80,20 @@
|
|||
</block>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
jQuery(function($)
|
||||
{
|
||||
// check browser version
|
||||
if($.browser.msie == true ) {
|
||||
var arrBrowserVersion = $.browser.version.split('.');
|
||||
if(parseInt(arrBrowserVersion[0], 10) <= 8) {
|
||||
$('#checkBrowserMessage').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<include target="./_footer.html" />
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue