From c0b8071a49ce472ff915ba3ea3387c29edbebfc1 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 21 May 2009 10:18:20 -0400 Subject: Split JavaScript inp() into separate functions --- lib/js/urweb.js | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 8890c446..25ed2f7a 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -295,7 +295,7 @@ function dyn(s) { populate(x); } -function inp(t, s, content) { +function input(t, s) { var x = document.createElement(t); x.dead = false; x.signal = ss(s); @@ -303,14 +303,23 @@ function inp(t, s, content) { x.recreate = function(v) { if (x.value != v) x.value = v; }; populate(x); addNode(x); - if (t == "select") { - x.innerHTML = content; - x.value = s.data; - x.onchange = function() { sv(s, x.value) }; - } else { - x.value = s.data; - x.onkeyup = function() { sv(s, x.value) }; - } + + return x; +} + +function inp(s) { + var x = input("input", s); + x.value = s.data; + x.onkeyup = function() { sv(s, x.value) }; + + return x; +} + +function sel(s, content) { + var x = input("select", s); + x.innerHTML = content; + x.value = s.data; + x.onchange = function() { sv(s, x.value) }; return x; } -- cgit v1.2.3