]> git.ktnx.net Git - lsl.git/commitdiff
remove Cancel buttons from dialogs
authorDamyan Ivanov <dmn@debian.org>
Sun, 6 Mar 2022 20:35:33 +0000 (20:35 +0000)
committerDamyan Ivanov <dmn@debian.org>
Sun, 6 Mar 2022 20:35:33 +0000 (20:35 +0000)
easier to just click outside and less clutter

the width calculation is to prevent an unnecessarily narrow dialog

public/javascripts/lsl.js

index 35e70b4a1725ba1d77697ef9871d1de7d54ea3a7..f7efa52f72236622f57796a2b84a501f4ec95e6e 100644 (file)
@@ -109,7 +109,7 @@ function edit_list() {
         autoOpen: true,
         modal: true,
         title: 'Edit list',
-        width: 'max-content',
+        width: 'min(calc(100% - 2em), 20em)',
         close: (ev) => {
             $(ev.target).dialog('destroy');
         },
@@ -121,10 +121,6 @@ function edit_list() {
                     delete_list(d);
                 },
             },
-            {
-                text: 'Cancel',
-                click: ()=>{ d.dialog('destroy'); },
-            },
             {
                 icon: 'ui-icon-disk',
                 text: 'OK',
@@ -338,7 +334,7 @@ function edit_list_item(li) {
         autoOpen: true,
         modal: true,
         title: 'Edit item',
-        width: 'max-content',
+        width: 'min(calc(100% - 2em), 20em)',
         close: (ev) => {
             $(ev.target).dialog('destroy');
         },
@@ -350,10 +346,6 @@ function edit_list_item(li) {
                     delete_list_item(d, li);
                 },
             },
-            {
-                text: 'Cancel',
-                click: ()=>{ d.dialog('destroy'); },
-            },
             {
                 icon: 'ui-icon-disk',
                 text: 'OK',