sr-npm 1.7.231 → 1.7.232
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 +3 -1
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -242,7 +242,9 @@ async function applyFilters(_$w, skipUrlUpdate = false) {
|
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
if (searchInputFocused) {
|
|
245
|
+
console.log("focusing search input");
|
|
245
246
|
_$w('#searchInput').focus();
|
|
247
|
+
|
|
246
248
|
}
|
|
247
249
|
|
|
248
250
|
const count = await updateCount(_$w);
|
|
@@ -354,7 +356,7 @@ async function updateMapMarkers(_$w,count){
|
|
|
354
356
|
const markers = items.items.map(item => {
|
|
355
357
|
const location = item.locationAddress.location;
|
|
356
358
|
return {
|
|
357
|
-
|
|
359
|
+
|
|
358
360
|
location: {
|
|
359
361
|
latitude: location.latitude,
|
|
360
362
|
longitude: location.longitude
|