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:
parent
779de03111
commit
cb18f204ef
1 changed files with 6 additions and 1 deletions
|
|
@ -1,2 +1,7 @@
|
||||||
document.createElement('header');
|
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() { };
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue