From 7b60f4d326933e6dbdbb846c0ce027aa87573784 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 25 Jan 2019 20:19:33 +0300 Subject: [PATCH] minor tweak... 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 17f67d17..dd6a1422 100755 --- a/ui (gen4)/lib/widget/browse2.js +++ b/ui (gen4)/lib/widget/browse2.js @@ -127,9 +127,8 @@ var BaseBrowserPrototype = { // // format: // { - // item: ..., + // value: ..., // - // // options... // ... // } // @@ -254,6 +253,7 @@ object.makeConstructor('BaseBrowser', BaseBrowserPrototype) + //--------------------------------------------------------------------- var BrowserClassPrototype = { @@ -284,7 +284,7 @@ var BrowserPrototype = { // save the rendered state to .dom render: function(context, options){ - this.dom = object.parent(BrowserPrototype.render, this).call(this, context, options) + this.dom = object.parent(BrowserPrototype.render, this).call(this, ...arguments) return this.dom },