Skip to content

Commit 25a4c26

Browse files
committed
Fix travis errors
1 parent a0fe73b commit 25a4c26

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

static/js/map.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,7 +1634,6 @@ function processPokemon(item) {
16341634

16351635
if (!(item['encounter_id'] in mapData.pokemons) &&
16361636
!isPokeExcluded && !isRarityExcluded && isPokeAlive) {
1637-
16381637
// Add marker to map and item to dict.
16391638
const isNotifyPkmn = isNotifyPoke(item)
16401639
if (!item.hidden && (!Store.get('hideNotNotified') || isNotifyPkmn)) {
@@ -2467,7 +2466,7 @@ $(function () {
24672466
$switchActiveRaidGymsOnly.on('change', function () {
24682467
Store.set('showActiveRaidsOnly', this.checked)
24692468
lastgyms = false
2470-
2469+
24712470
updateMap()
24722471
})
24732472

@@ -2927,17 +2926,17 @@ $(function () {
29272926

29282927
$('#bounce-switch').change(function () {
29292928
Store.set('isBounceDisabled', this.checked)
2930-
location.reload();
2929+
location.reload()
29312930
})
29322931

29332932
$('#hideunnotified-switch').change(function () {
29342933
Store.set('hideNotNotified', this.checked)
2935-
location.reload();
2934+
location.reload()
29362935
})
29372936

29382937
$('#popups-switch').change(function () {
29392938
Store.set('showPopups', this.checked)
2940-
location.reload();
2939+
location.reload()
29412940
})
29422941

29432942
$('#cries-switch').change(function () {

0 commit comments

Comments
 (0)