Fixes #2610 (attempt 2).

Works-around the IE 9 login problem without modifying vendor/backbone.js.

Tested with IE 9.0.4.
This commit is contained in:
Joe Bivins 2012-01-10 01:59:42 -05:00
parent 779de03111
commit cb18f204ef

View file

@ -1,2 +1,7 @@
document.createElement('header');
document.createElement('footer');
document.createElement('footer');
// IE 9 work-around for vendor/backbone.js
if ((window.history) && (document.documentMode == 9)) {
window.history.pushState = function() { };
}