Skip to content

Commit a66b60b

Browse files
committed
style: make machine save option more visible
1 parent 634c7db commit a66b60b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

public/versioning.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2
1414
*/
1515

16-
const VERSION = "1.113.3";
16+
const VERSION = "1.113.4";
1717
if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function");
1818

1919
{

src/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6221,7 +6221,12 @@
62216221
<div id="saveMapData" style="display: none" class="dialog">
62226222
<div style="margin-top: 0.3em">
62236223
<strong>Save map to</strong>
6224-
<button onclick="saveMap('machine')" data-tip="Download map file to your local disk" data-shortcut="Ctrl + S">
6224+
<button
6225+
onclick="saveMap('machine')"
6226+
data-tip="Download map file to your local disk"
6227+
data-shortcut="Ctrl + S"
6228+
style="font-weight: 600"
6229+
>
62256230
machine
62266231
</button>
62276232
<button onclick="saveMap('dropbox')" data-tip="Save map file to your Dropbox" data-shortcut="Ctrl + C">

0 commit comments

Comments
 (0)