mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 20:44:28 +09:00
Fix JQMigrate warning in admin index template
This commit is contained in:
parent
f597e9130e
commit
b55a55c1d2
1 changed files with 2 additions and 3 deletions
|
|
@ -81,9 +81,8 @@
|
||||||
jQuery(function($)
|
jQuery(function($)
|
||||||
{
|
{
|
||||||
// check browser version
|
// check browser version
|
||||||
if($.browser.msie == true ) {
|
if (var msie = navigator.userAgent.match(/MSIE (\d)/)) {
|
||||||
var arrBrowserVersion = $.browser.version.split('.');
|
if (parseInt(msie[1], 10) <== 8) {
|
||||||
if(parseInt(arrBrowserVersion[0], 10) <= 8) {
|
|
||||||
$('#checkBrowserMessage').show();
|
$('#checkBrowserMessage').show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue