Gemini added delete undo functionality

This commit is contained in:
Joe Tretter
2025-11-01 12:52:02 -05:00
parent 32122b8213
commit d29c04b2ed
3 changed files with 30 additions and 2 deletions

View File

@@ -302,3 +302,11 @@ function setMode(sMode){
function updateTransferQCounter(){
db.objectStore("TransferQ").count().done(function (result) { changeButtonText("btnHeadingRight",result); });
}
function showUndoButton() {
$("#btnUndo").show();
}
function hideUndoButton() {
$("#btnUndo").hide();
}