File size: 297 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
let _loadedViaHistory = false;
export default {
start: function () {
// add a popstate listener that sets the flag
window.addEventListener( 'popstate', function ( event ) {
_loadedViaHistory = !! event.state;
} );
},
loadedViaHistory: function () {
return _loadedViaHistory;
},
};
|