diff --git a/index.html b/index.html index 90f7299c..b9f8274d 100644 --- a/index.html +++ b/index.html @@ -8140,7 +8140,7 @@ - + diff --git a/modules/ui/notes-editor.js b/modules/ui/notes-editor.js index 2b5d1c79..10f87e16 100644 --- a/modules/ui/notes-editor.js +++ b/modules/ui/notes-editor.js @@ -40,8 +40,8 @@ function editNotes(id, name) { $("#notesEditor").dialog({ title: "Notes Editor", - width: window.innerWidth * 0.8, - height: window.innerHeight * 0.75, + width: svgWidth * 0.8, + height: svgHeight * 0.75, position: {my: "center", at: "center", of: "svg"}, close: removeEditor }); diff --git a/versioning.js b/versioning.js index 1453308f..fff0a599 100644 --- a/versioning.js +++ b/versioning.js @@ -13,7 +13,7 @@ * Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2 */ -const VERSION = "1.107.2"; +const VERSION = "1.107.3"; if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function"); {