From 11eb3f4e544804b1f7d7155de99510c77ee4c5d2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 9 Nov 2010 14:57:06 +0300 Subject: dropbox_replace_options: only copy value when present --- functions.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/functions.js b/functions.js index 09582feaf..4942b50cd 100644 --- a/functions.js +++ b/functions.js @@ -2285,6 +2285,9 @@ function dropbox_replace_options(elem, options) { for (var i = 0; i < options.length; i++) { var text = options[i].firstChild.nodeValue; var value = options[i].getAttribute("value"); + + if (value == undefined) value = text; + var issel = options[i].getAttribute("selected") == "1"; var option = new Option(text, value, issel); -- cgit v1.2.3