sr-npm 1.7.134 → 1.7.135
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 -7
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -22,8 +22,6 @@ queryPageVar=query.page;
|
|
|
22
22
|
queryKeyWordVar=query.keyWord;
|
|
23
23
|
queryDepartmentVar=query.department;
|
|
24
24
|
console.log("query", query);
|
|
25
|
-
console.log("query.department", query.department);
|
|
26
|
-
console.log("queryDepartmentVar", queryDepartmentVar);
|
|
27
25
|
thisObjectVar=thisObject;
|
|
28
26
|
allJobs=await getAllPositions();
|
|
29
27
|
await handleUrlParams(_$w);
|
|
@@ -255,12 +253,12 @@ async function updateCount(_$w) {
|
|
|
255
253
|
|
|
256
254
|
async function handleDepartmentParam(_$w,department) {
|
|
257
255
|
console.log("department inside handleDepartmentParam", department.replace('-', ' '));
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
256
|
+
_$w('#dropdownDepartment').value = department.replace('-', ' ');
|
|
257
|
+
// _$w("#dataset2").onReady(async () => {
|
|
258
|
+
// _$w('#dataset2').setFieldValue("title", department.replace('-', ' '));
|
|
261
259
|
|
|
262
|
-
|
|
263
|
-
|
|
260
|
+
// await applyFilters(_$w);
|
|
261
|
+
// });
|
|
264
262
|
}
|
|
265
263
|
|
|
266
264
|
|