sr-npm 1.7.1330 → 1.7.1331

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.1330",
3
+ "version": "1.7.1331",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,9 +27,9 @@ function loadCategoryRepeaterData(_$w, allvaluesobjects) {
27
27
 
28
28
  async function bindPrimarySearch(_$w) {
29
29
  handleCategoryEvents(_$w);
30
- _$w(GLOBAL_SECTIONS_SELECTORS.JOBS_DATASET).onReady(async () => {
30
+
31
31
  await handleSearchInput(_$w);
32
- });
32
+
33
33
 
34
34
  // on mouse out collapse the results container
35
35
  _$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.RESULTS_CONTAINER).onMouseOut(async () => {
@@ -127,6 +127,8 @@ async function queryPrimarySearchResults(_$w, query) {
127
127
 
128
128
  await _$w(GLOBAL_SECTIONS_SELECTORS.JOBS_DATASET).setFilter(filter);
129
129
  await _$w(GLOBAL_SECTIONS_SELECTORS.JOBS_DATASET).refresh();
130
+
131
+ await _$w(GLOBAL_SECTIONS_SELECTORS.JOBS_DATASET).onReadyAsync();
130
132
 
131
133
  let count = _$w(GLOBAL_SECTIONS_SELECTORS.JOBS_DATASET).getTotalCount();
132
134