sr-npm 1.7.194 → 1.7.196
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 +3 -0
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -92,6 +92,7 @@ async function handleUrlParams(_$w) {
|
|
|
92
92
|
await handleDepartmentParam(_$w,queryDepartmentVar);
|
|
93
93
|
}
|
|
94
94
|
if (queryLocationVar) {
|
|
95
|
+
|
|
95
96
|
console.log("queryLocationVar:@!#$#@%^%$&%&^%&^% ", queryLocationVar);
|
|
96
97
|
await handleLocationParam(_$w,queryLocationVar);
|
|
97
98
|
}
|
|
@@ -174,6 +175,8 @@ function init(_$w) {
|
|
|
174
175
|
}
|
|
175
176
|
|
|
176
177
|
async function applyFilters(_$w, skipUrlUpdate = false) {
|
|
178
|
+
console.log("applyFilters");
|
|
179
|
+
console.log("dropdownLocation value: ", _$w('#dropdownLocation').value);
|
|
177
180
|
const dropdownFiltersMapping = [
|
|
178
181
|
{ elementId: '#dropdownDepartment', field: 'department', value: _$w('#dropdownDepartment').value },
|
|
179
182
|
{ elementId: '#dropdownLocation', field: 'cityText', value: _$w('#dropdownLocation').value },
|