mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix swipe gesture, using target
This commit is contained in:
@@ -896,8 +896,7 @@ export function initRossMods() {
|
|||||||
|
|
||||||
restoreUserInput();
|
restoreUserInput();
|
||||||
|
|
||||||
//Regenerate if user swipes on the last mesage in chat
|
// Swipe gestures (see: https://www.npmjs.com/package/swiped-events)
|
||||||
|
|
||||||
document.addEventListener('swiped-left', function (e) {
|
document.addEventListener('swiped-left', function (e) {
|
||||||
if (power_user.gestures === false) {
|
if (power_user.gestures === false) {
|
||||||
return;
|
return;
|
||||||
@@ -905,7 +904,7 @@ export function initRossMods() {
|
|||||||
if (Popup.util.isPopupOpen()) {
|
if (Popup.util.isPopupOpen()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!$('#sheld').is(':focus-within')) {
|
if (!$(e.target).closest('#sheld').length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var SwipeButR = $('.swipe_right:last');
|
var SwipeButR = $('.swipe_right:last');
|
||||||
@@ -923,7 +922,7 @@ export function initRossMods() {
|
|||||||
if (Popup.util.isPopupOpen()) {
|
if (Popup.util.isPopupOpen()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!$('#sheld').is(':focus-within')) {
|
if (!$(e.target).closest('#sheld').length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var SwipeButL = $('.swipe_left:last');
|
var SwipeButL = $('.swipe_left:last');
|
||||||
|
Reference in New Issue
Block a user