Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/app/webroot/news/plugins/content/jw_sigpro/includes/js/ |
Upload File : |
/** * @version 2.6.0 * @package Simple Image Gallery Pro * @author JoomlaWorks - http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2012 JoomlaWorks Ltd. All rights reserved. * @license http://www.joomlaworks.net/license */ var SIGProHelper = { ieBrowserDetect: function(){ if(!document.getElementsByTagName) return false; if(!document.getElementById) return false; var bodyClass = document.getElementsByTagName("body")[0].className; var isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1; var isIE7 = navigator.userAgent.toLowerCase().indexOf('msie 7') != -1; var isIE8 = navigator.userAgent.toLowerCase().indexOf('msie 8') != -1; if(isIE6) document.getElementsByTagName("body")[0].className = bodyClass + ' sigProIsIE6'; if(isIE7) document.getElementsByTagName("body")[0].className = bodyClass + ' sigProIsIE7'; if(isIE8) document.getElementsByTagName("body")[0].className = bodyClass + ' sigProIsIE8'; }, loader: function(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { if (oldonload) { oldonload(); } func(); } } } // END }; // Initiate SIGProHelper.loader(SIGProHelper.ieBrowserDetect);