From 1fd1211f416b5e434c15b00856f2bb8b0f6abdd7 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 22 Nov 2019 16:09:25 +0300 Subject: [PATCH] cleanup... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/ui-widgets.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ui (gen4)/features/ui-widgets.js b/ui (gen4)/features/ui-widgets.js index 1cc97c89..595a104f 100755 --- a/ui (gen4)/features/ui-widgets.js +++ b/ui (gen4)/features/ui-widgets.js @@ -527,20 +527,17 @@ var makeListEditorDialog = module.makeListEditorDialog = function makeListEditorDialog(list, options){ options = options || {} - return makeUIDialog(function(){ var lst = list instanceof Function ? list.call(this) : list - // NOTE: this will edit the list in place... return browse.makeLister(null, function(_, make){ make.EditableList(lst, options) }, { cls: options.cls, - }) - }) } + }) }) } // Make .config list editor dialog... //