Why does goog.history.Html5History object fire goog.history.EventType.NAVIGATE event twice each time when fragment is changed? This is the example of code:
var history = goog.history.Html5History.isSupported()
? new goog.history.Html5History()
: new goog.History();
goog.events.listen(history, goog.history.EventType.NAVIGATE, function(e) {
console.log(['navigation', e.target.getToken()]);
});
history.setEnabled(true);
And this is log:
["navigation", "!/properties/new"]
["navigation", "!/properties/new"]
UPD: As I have figured out there are two different values of isNavigation field of e object in callback. First time it takes false value, and second time it takes true value. isNavigation means:
isNavigation True if the event was triggered by a browser action, such as forward or back, clicking on a link, editing the URL, or calling window.history.(go|back|forward). False if the token has been changed by a setToken or replaceToken call.
But how to get only one even fired?