sr-npm 1.7.1039 → 1.7.1040
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.
package/package.json
CHANGED
|
@@ -23,6 +23,7 @@ const pagination = {
|
|
|
23
23
|
currentPage: 1,
|
|
24
24
|
};
|
|
25
25
|
async function careersMultiBoxesPageOnReady(_$w,urlParams) {
|
|
26
|
+
//to handle back and forth , url changes
|
|
26
27
|
onChange(async ()=>{
|
|
27
28
|
await handleBackAndForth(_$w);
|
|
28
29
|
});
|
|
@@ -44,6 +45,10 @@ async function careersMultiBoxesPageOnReady(_$w,urlParams) {
|
|
|
44
45
|
async function handleBackAndForth(_$w){
|
|
45
46
|
const newQueryParams=await location.query();
|
|
46
47
|
console.log("newQueryParams: ", newQueryParams);
|
|
48
|
+
//selectedByField.clear();
|
|
49
|
+
await clearAll(_$w);
|
|
50
|
+
|
|
51
|
+
|
|
47
52
|
await handleUrlParams(_$w,newQueryParams);
|
|
48
53
|
|
|
49
54
|
}
|