Merge "Fix IE9 history navigation"

This commit is contained in:
jenkins-bot 2014-05-17 00:06:24 +00:00 committed by Gerrit Code Review
commit f5a6d67749

View file

@ -355,7 +355,7 @@
MMVB.setupEventHandlers = function () {
var self = this;
$( window ).on( this.browserHistory ? 'popstate.mmvb' : 'hashchange', function () {
$( window ).on( this.browserHistory && this.browserHistory.pushState ? 'popstate.mmvb' : 'hashchange', function () {
self.hash();
} );