sr-npm 1.7.719 → 1.7.721

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.719",
3
+ "version": "1.7.721",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -25,6 +25,9 @@ async function careersMultiBoxesPageOnReady(_$w,urlParams) {
25
25
  await bindSearchInput(_$w);
26
26
  _$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.CLEAR_ALL_BUTTON_ID).onClick(async () => {
27
27
  if(selectedByField.size>0) {
28
+ for(const field of allfields) {
29
+ _$w(`#${FiltersIds[field.title]}CheckBox`).selectedIndices = [];
30
+ }
28
31
  selectedByField.clear();
29
32
  await updateJobsAndNumbersAndFilters(_$w,true);
30
33
  }
@@ -377,6 +380,7 @@ function secondarySearch(_$w,query) {
377
380
  _$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.paginationTotalCountText).text = secondarySearchJobs.length.toString();
378
381
  pagination.currentPage=1;
379
382
  handlePaginationButtons(_$w,true);
383
+ updateTotalJobsCountText(_$w);
380
384
  }
381
385
  function bindSearchInput(_$w) {
382
386
  const primarySearchDebounced = debounce(() => {