Skip to content
Snippets Groups Projects
Commit cb18f204 authored by Joe Bivins's avatar Joe Bivins
Browse files

Fixes #2610 (attempt 2).

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

Tested with IE 9.0.4.
parent 779de031
No related branches found
No related tags found
No related merge requests found
document.createElement('header');
document.createElement('footer');
\ No newline at end of file
document.createElement('footer');
// IE 9 work-around for vendor/backbone.js
if ((window.history) && (document.documentMode == 9)) {
window.history.pushState = function() { };
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment