sr-npm 1.7.235 → 1.7.236
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 +5 -5
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -147,7 +147,7 @@ async function bind(_$w) {
|
|
|
147
147
|
|
|
148
148
|
});
|
|
149
149
|
|
|
150
|
-
if (await window.formFactor === "Mobile") {
|
|
150
|
+
if (await window.formFactor() === "Mobile") {
|
|
151
151
|
_$w('#dropdownsContainer').collapse();
|
|
152
152
|
}
|
|
153
153
|
|
|
@@ -173,10 +173,10 @@ async function init(_$w) {
|
|
|
173
173
|
_$w('#dropdownsContainer, #closeFiltersButton').collapse();
|
|
174
174
|
});
|
|
175
175
|
|
|
176
|
-
if (await window.formFactor === "Mobile") {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}
|
|
176
|
+
// if (await window.formFactor() === "Mobile") {
|
|
177
|
+
// console.log("expanding filters button");
|
|
178
|
+
// await _$w('#closeFiltersButton').expand();
|
|
179
|
+
// }
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
async function applyFilters(_$w, skipUrlUpdate = false) {
|