From f53afb410c81ad5b37062b4b28489b6654f4fcb5 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 27 May 2019 17:36:57 +0300 Subject: [PATCH] minor tweaks... Signed-off-by: Alex A. Naanou --- ui (gen4)/lib/widget/browse2.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui (gen4)/lib/widget/browse2.js b/ui (gen4)/lib/widget/browse2.js index 51a72c9a..b76ec6ac 100755 --- a/ui (gen4)/lib/widget/browse2.js +++ b/ui (gen4)/lib/widget/browse2.js @@ -162,12 +162,12 @@ Items.nest = function(item, list, options){ //--------------------------------------------------------------------- // wrappers... -Items.Item = function(value, options){} +Items.Item = function(value, options){ return this(...arguments) } +Items.Separator = function(){ return this('---') } +Items.Spinner = function(){ return this('...') } Items.Action = function(value, options){} Items.Heading = function(value, options){} Items.Empty = function(value){} -Items.Separator = function(value){} -Items.Spinner = function(value){} Items.Selected = function(value){} Items.Editable = function(value){} Items.ConfirmAction = function(value){}