Procházet zdrojové kódy

Make the combatant scrolling orders consistent

master
Fen Dweller před 5 roky
rodič
revize
925a567228
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/components/Combat.vue

+ 1
- 1
src/components/Combat.vue Zobrazit soubor

@@ -70,7 +70,7 @@ import { Side } from '@/game/combat'
const target = this.$el.querySelector("#right-stats")

if (target !== null) {
target.scrollBy({ top: 0, left: -event.deltaY, behavior: 'smooth' })
target.scrollBy({ top: 0, left: event.deltaY, behavior: 'smooth' })
}
}
}


Načítá se…
Zrušit
Uložit