feat: move to node v16 and adding a pan tool

This commit is contained in:
PurpleBabar
2023-09-20 18:27:34 +02:00
parent d5cd829834
commit cf8902f3c5
15 changed files with 13814 additions and 1019 deletions

View File

@@ -2562,6 +2562,17 @@ var SpacedeckSections = {
this.opened_dialog = "none";
},
start_pan: function(evt) {
this.deselect();
if (this.active_tool == "pan") {
this.active_tool = "pointer";
} else {
this.active_tool = "pan";
}
this.opened_dialog = "none";
},
start_drawing_scribble: function(evt) {
this.deselect();
if (this.active_tool == "scribble") {