#183 보완 counter 모듈을 사용하지 않을 때 메시지 표시되지 않는 문제 수정

This commit is contained in:
bnu 2015-03-03 17:19:05 +09:00
parent d139cf5d87
commit da1b59e3e8
2 changed files with 15 additions and 8 deletions

View file

@ -90,14 +90,6 @@ jQuery(function($)
$(this).removeClass('hover').find('>.action').hide(); $(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) function obj2Array(htObj)

View file

@ -80,5 +80,20 @@
</block> </block>
</div> </div>
</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" /> <include target="./_footer.html" />