From 6cb8eb68fe8a4590a25e5cbe2ddb90c2c35e646f Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Sun, 22 Apr 2012 13:17:55 +0100 Subject: [PATCH] Fixed bug on IE9 detection --- core/main/client/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/main/client/browser.js b/core/main/client/browser.js index bbc4979d0..eea3e22b1 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -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; }, /**