Fixed bug on IE9 detection

This commit is contained in:
antisnatchor
2012-04-22 13:17:55 +01:00
parent 9835b0907d
commit 6cb8eb68fe

View File

@@ -57,7 +57,7 @@ beef.browser = {
* @example: beef.browser.isIE9()
*/
isIE9: function() {
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !window.getComputedStyle && !!document.documentMode && !!window.XDomainRequest && !!window.performance;
return !!window.XMLHttpRequest && !window.chrome && !window.opera && !!window.getComputedStyle && !!document.documentMode && !!window.XDomainRequest && !!window.performance;
},
/**