mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +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($)
|
||||
{
|
||||
// check browser version
|
||||
if($.browser.msie == true ) {
|
||||
var arrBrowserVersion = $.browser.version.split('.');
|
||||
if(parseInt(arrBrowserVersion[0], 10) <= 8) {
|
||||
if (var msie = navigator.userAgent.match(/MSIE (\d)/)) {
|
||||
if (parseInt(msie[1], 10) <== 8) {
|
||||
$('#checkBrowserMessage').show();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue