sr-npm 1.7.133 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.133",
3
+ "version": "1.7.135",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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,9 +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
- // _$w('#dropdownDepartment').value = department.replace('-', ' ');
259
- _$w('#dataset2').setFieldValue("title", department.replace('-', ' '));
260
- await applyFilters(_$w);
256
+ _$w('#dropdownDepartment').value = department.replace('-', ' ');
257
+ // _$w("#dataset2").onReady(async () => {
258
+ // _$w('#dataset2').setFieldValue("title", department.replace('-', ' '));
259
+
260
+ // await applyFilters(_$w);
261
+ // });
261
262
  }
262
263
 
263
264