diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-11-30 10:02:13 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-11-30 10:02:13 -0500 |
commit | 7ee7be7c9fcb86e63aadb8f3a21439961f17b63d (patch) | |
tree | f7d02034f487581c28961bcb0f0b5836e1fec361 /lib | |
parent | b8fccedd9c01c3b499f64c26506c8fb4ea8b4109 (diff) |
add Placeholder attribute to <password>; change <textbox> code generation to set 'type' to 'text'
Diffstat (limited to 'lib')
-rw-r--r-- | lib/js/urweb.js | 2 | ||||
-rw-r--r-- | lib/ur/basis.urs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 57a03fb2..cc65ab8f 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -1004,7 +1004,7 @@ function inp(s, name) { return; var x = input(document.createElement("input"), s, - function(x) { return function(v) { if (x.value != v) x.value = v; }; }, null, name); + function(x) { return function(v) { if (x.value != v) x.value = v; }; }, "text", name); x.value = s.data; x.onkeyup = x.oninput = x.onchange = x.onpropertychange = function() { sv(s, x.value) }; diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 339e8f0a..71320a28 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -883,7 +883,7 @@ con formTag = fn (ty :: Type) (inner :: {Unit}) (attrs :: {Type}) => val hidden : formTag string [] [Id = string, Value = string] val textbox : formTag string [] ([Value = string, Size = int, Placeholder = string, Source = source string, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs) -val password : formTag string [] ([Value = string, Size = int] ++ boxAttrs) +val password : formTag string [] ([Value = string, Size = int, Placeholder = string] ++ boxAttrs) val textarea : formTag string [] ([Rows = int, Cols = int, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs) |