From 1045ce0088988b6c6f60c578299773ceb06fe5f6 Mon Sep 17 00:00:00 2001 From: Antti Rasinen Date: Mon, 7 Sep 2015 11:15:53 +0300 Subject: [PATCH] Fix a bug in the default code for replace-function --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 07108454..8dee90c2 100644 --- a/index.html +++ b/index.html @@ -230,7 +230,7 @@

Extend

Function that takes one parameter, the text of the selected option, and is responsible for replacing the current input value with it.
function (text) {
-	this.input.value = value;
+	this.input.value = text;
 }