Actually allow IE6 and 7 like we promised.

This commit is contained in:
Nick Martin
2012-01-17 21:09:42 -08:00
parent dc2e377695
commit 5312de215f

View File

@@ -39,7 +39,7 @@ var init_keepalive = function () {
var supported_browser = function (user_agent) {
var agent = useragent.lookup(user_agent);
return !(agent.family === 'IE' && agent.major <= '7');
return !(agent.family === 'IE' && agent.major <= '5');
};
var run = function (bundle_dir) {