mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Actually allow IE6 and 7 like we promised.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user