mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge branch 'dev' of https://github.com/SillyLossy/TavernAI into dev
This commit is contained in:
@ -5429,7 +5429,6 @@ $(document).ready(function () {
|
||||
easing: animation_easing,
|
||||
});
|
||||
setTimeout(function () { $("#character_popup").css("display", "none"); }, 200);
|
||||
//$("#character_popup").css("display", "none");
|
||||
});
|
||||
$("#character_popup_ok").click(function () {
|
||||
is_advanced_char_open = false;
|
||||
@ -6371,6 +6370,25 @@ $(document).ready(function () {
|
||||
}
|
||||
})
|
||||
|
||||
$(document).on("click", ".extraMesButtonsHint", function (e) {
|
||||
const elmnt = e.target;
|
||||
$(elmnt).transition({
|
||||
opacity: 0,
|
||||
duration: 150,
|
||||
easing: 'ease-in-out',
|
||||
});
|
||||
setTimeout(function () {
|
||||
$(elmnt).hide();
|
||||
$(elmnt).siblings(".extraMesButtons").css('opcacity', '0');
|
||||
$(elmnt).siblings(".extraMesButtons").css('display', 'flex');
|
||||
$(elmnt).siblings(".extraMesButtons").transition({
|
||||
opacity: 1,
|
||||
duration: 150,
|
||||
easing: 'ease-in-out',
|
||||
});
|
||||
}, 150);
|
||||
})
|
||||
|
||||
$(document).on("click", ".mes_edit_cancel", function () {
|
||||
let text = chat[this_edit_mes_id]["mes"];
|
||||
|
||||
|
Reference in New Issue
Block a user