From 862fe8c6bd2eddb12a6e0a8f6248d6737123f35f Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sun, 15 Feb 2015 10:18:25 +0000 Subject: [PATCH] fix FormElementGroup.value --- source/UI/js/Form/FormElementGroup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/Form/FormElementGroup.js b/source/UI/js/Form/FormElementGroup.js index ba8e9b81..a6fbaa2f 100644 --- a/source/UI/js/Form/FormElementGroup.js +++ b/source/UI/js/Form/FormElementGroup.js @@ -124,7 +124,7 @@ Ox.FormElementGroup = function(options, self) { ? self.options.join(values) : values; } else { - setValue(); + return that.options({value: arguments[0]}); return that; } };