Works-around the IE 9 login problem without modifying vendor/backbone.js. Tested with IE 9.0.4.
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
document.createElement('header');
|
|
document.createElement('footer');
|
|
|
|
// IE 9 work-around for vendor/backbone.js
|
|
if ((window.history) && (document.documentMode == 9)) {
|
|
window.history.pushState = function() { };
|
|
}
|