sr-npm 1.7.909 → 1.7.910
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 +2 -0
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -507,11 +507,13 @@ async function updateMapMarkers(_$w){
|
|
|
507
507
|
}
|
|
508
508
|
|
|
509
509
|
async function handleBrandDropdown(_$w){
|
|
510
|
+
if(siteconfig.disableMultiBrand==="false"){
|
|
510
511
|
const brands=await wixData.query(COLLECTIONS.BRANDS).find();
|
|
511
512
|
if(brands.items.length>1){
|
|
512
513
|
console.log("showing brand dropdown");
|
|
513
514
|
_$w('#dropdownBrand').show();
|
|
514
515
|
}
|
|
516
|
+
}
|
|
515
517
|
}
|
|
516
518
|
module.exports = {
|
|
517
519
|
careersPageOnReady,
|