Merge pull request #2620 from jbivins/2610-ie9-backbone-fix-2
Fixes #2610 (attempt 2).
This commit is contained in:
commit
701ce3ebbf
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