sr-npm 1.7.321 → 1.7.322

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.321",
3
+ "version": "1.7.322",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  const { getAllPositions } = require('../backend/queries');
2
2
  const {wixData} = require('wix-data');
3
3
  const { window } = require('@wix/site-window');
4
- const { query,queryParams,wixLocationFrontend} = require("wix-location-frontend");
4
+ const { query,queryParams,onChange} = require("wix-location-frontend");
5
5
  const {
6
6
  debounce,
7
7
  getFilter,
@@ -173,12 +173,14 @@ function init(_$w) {
173
173
  _$w('#closeFiltersButton').onClick(()=>{
174
174
  _$w('#dropdownsContainer, #closeFiltersButton').collapse();
175
175
  });
176
-
177
- wixLocationFrontend.onChange(()=>{
178
- console.log("wixLocationFrontend.onChange");
176
+
177
+ onChange(()=>{
178
+ console.log("onChange");
179
179
  });
180
180
 
181
181
 
182
+
183
+
182
184
  }
183
185
 
184
186