12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- goog.provide('goog.history.Event');
- goog.require('goog.events.Event');
- goog.require('goog.history.EventType');
- goog.history.Event = function(token, isNavigation) {
- goog.events.Event.call(this, goog.history.EventType.NAVIGATE);
-
- this.token = token;
-
- this.isNavigation = isNavigation;
- };
- goog.inherits(goog.history.Event, goog.events.Event);
|