1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: indentation

This commit is contained in:
Aimekram 2022-10-19 22:15:25 +02:00
parent 832b9eaf4d
commit 8251b65399
4 changed files with 5 additions and 5 deletions

View file

@ -55,13 +55,13 @@ import '../elements/emby-button/emby-button';
// implement without hammer
const onSwipeLeft = function (e, target) {
if (allowSwipe(target) && view.contains(target)) {
currentElement.selectNext();
currentElement.selectNext();
}
};
const onSwipeRight = function (e, target) {
if (allowSwipe(target) && view.contains(target)) {
currentElement.selectPrevious();
currentElement.selectPrevious();
}
};