mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Don't destroy local storage on ctrl+arrow
This commit is contained in:
@ -412,9 +412,11 @@ $("document").ready(function () {
|
||||
if (event.ctrlKey && event.key == "ArrowLeft") { //for debug, show all local stored vars
|
||||
CheckLocal();
|
||||
}
|
||||
/*
|
||||
if (event.ctrlKey && event.key == "ArrowRight") { //for debug, empty local storage state
|
||||
ClearLocal();
|
||||
}
|
||||
*/
|
||||
if (event.key == "ArrowLeft") { //swipes left
|
||||
if (
|
||||
$(".swipe_left:last").css('display') === 'flex' &&
|
||||
|
Reference in New Issue
Block a user