We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d9457 commit ff83b57Copy full SHA for ff83b57
1 file changed
live-view/live-view.js
@@ -313,7 +313,8 @@ function addBottomSwipeListener() {
313
if (direction == 'up') {
314
315
// if swiped up and bottom float isn't expanded
316
- if (swiped && !bottomWrapper.classList.contains('expanded')) {
+ if (swiped && !bottomWrapper.classList.contains('expanded')
317
+ && !bottomFloat.classList.contains('file-open')) {
318
319
swiped = false;
320
@@ -339,7 +340,8 @@ function addBottomSwipeListener() {
339
340
} else if (direction == 'down') {
341
342
// if swiped down and bottom float is expanded
- if (swiped && bottomWrapper.classList.contains('expanded')) {
343
+ if (swiped && bottomWrapper.classList.contains('expanded')
344
345
346
347
0 commit comments