File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 39
39
// event on location change and even that without interception support, etc.
40
40
! ( function ( ) {
41
41
if ( window . navigation == undefined ) {
42
+
43
+ class NavigationEvent extends CustomEvent {
44
+ constructor ( ) {
45
+ super ( "navigate" ) ;
46
+ this . destination = { url : undefined } ;
47
+ }
48
+ }
49
+
42
50
// Create a navigation object on the window
43
51
// We create a DOM element for the navigation object so that we can
44
52
// attach events on it.
45
53
window . navigation = document . createElement ( "div" ) ;
46
54
55
+ const create_event = ( args ) => {
56
+ const event = new NavigationEvent ( ) ;
57
+ event . destination . url = args [ 2 ] ;
58
+ return event ;
59
+ } ;
60
+
47
61
// Patch pushState to trigger an `navigate` event on the navigation
48
62
// object when the URL changes.
49
63
const pushState = window . history . pushState ;
50
64
window . history . pushState = function ( ) {
51
65
pushState . apply ( window . history , arguments ) ;
52
- window . navigation . dispatchEvent ( new Event ( "navigate" ) ) ;
66
+ window . navigation . dispatchEvent ( create_event ( arguments ) ) ;
53
67
} ;
54
68
55
69
// Same with replaceState
56
70
const replaceState = window . history . replaceState ;
57
71
window . history . replaceState = function ( ) {
58
72
replaceState . apply ( window . history , arguments ) ;
59
- window . navigation . dispatchEvent ( new Event ( "navigate" ) ) ;
73
+ window . navigation . dispatchEvent ( create_event ( arguments ) ) ;
60
74
} ;
61
75
}
62
76
} ) ( ) ;
You can’t perform that action at this time.
0 commit comments