sr-npm 1.7.346 → 1.7.347
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 +1 -1
- package/pages/careersPage.js +5 -1
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -183,8 +183,12 @@ function init(_$w,thisObject,queryParams) {
|
|
|
183
183
|
|
|
184
184
|
//URL onChange
|
|
185
185
|
onChange(async ()=>{
|
|
186
|
+
const newQueryParams=await location.query();
|
|
186
187
|
console.log("onChange triggering on ready");
|
|
187
|
-
|
|
188
|
+
console.log("newQueryParams: ", newQueryParams);
|
|
189
|
+
location.to(`/positions?KeyWord=123}`);
|
|
190
|
+
|
|
191
|
+
|
|
188
192
|
|
|
189
193
|
|
|
190
194
|
//try onready first
|