@base-framework/base 3.7.44 → 3.7.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,12 +6,20 @@
|
|
|
6
6
|
* @class
|
|
7
7
|
*/
|
|
8
8
|
export class BrowserHistory extends History {
|
|
9
|
+
pageShowCallBack: any;
|
|
9
10
|
/**
|
|
10
11
|
* This will remove the events.
|
|
11
12
|
*
|
|
12
13
|
* @returns {object} a reference to the object.
|
|
13
14
|
*/
|
|
14
15
|
removeEvent(): object;
|
|
16
|
+
/**
|
|
17
|
+
* Handles the pageshow event for bfcache restoration.
|
|
18
|
+
*
|
|
19
|
+
* @param {PageTransitionEvent} evt
|
|
20
|
+
* @returns {void}
|
|
21
|
+
*/
|
|
22
|
+
onPageShow(evt: PageTransitionEvent): void;
|
|
15
23
|
/**
|
|
16
24
|
* This will check to activate the router.
|
|
17
25
|
*
|