Merge pull request #2620 from jbivins/2610-ie9-backbone-fix-2

Fixes #2610 (attempt 2).
This commit is contained in:
Daniel Grippi 2012-01-10 10:43:19 -08:00
commit 701ce3ebbf

View file

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