Mercurial > urweb
comparison lib/ur/basis.urs @ 2076:855d7746a084
Remove 'value' attribute of <checkbox>
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 16 Nov 2014 14:06:24 -0500 |
parents | fde864eacd47 |
children | 3cd2bd4b1de0 |
comparison
equal
deleted
inserted
replaced
2075:fde864eacd47 | 2076:855d7746a084 |
---|---|
958 val password : formTag string [] ([Value = string, Size = int, Placeholder = string, Onchange = transaction unit] ++ boxAttrs ++ inputAttrs) | 958 val password : formTag string [] ([Value = string, Size = int, Placeholder = string, Onchange = transaction unit] ++ boxAttrs ++ inputAttrs) |
959 val email : formTag string [] ([Value = string, Size = int, Placeholder = string, Onchange = transaction unit] ++ boxAttrs ++ inputAttrs) | 959 val email : formTag string [] ([Value = string, Size = int, Placeholder = string, Onchange = transaction unit] ++ boxAttrs ++ inputAttrs) |
960 val textarea : formTag string [] ([Rows = int, Cols = int, Onchange = transaction unit, | 960 val textarea : formTag string [] ([Rows = int, Cols = int, Onchange = transaction unit, |
961 Ontext = transaction unit] ++ boxAttrs ++ inputAttrs) | 961 Ontext = transaction unit] ++ boxAttrs ++ inputAttrs) |
962 | 962 |
963 val checkbox : formTag bool [] ([Checked = bool, Onchange = transaction unit, Value = string] ++ boxAttrs) | 963 val checkbox : formTag bool [] ([Checked = bool, Onchange = transaction unit] ++ boxAttrs) |
964 | 964 |
965 type file | 965 type file |
966 val fileName : file -> option string | 966 val fileName : file -> option string |
967 val fileMimeType : file -> string | 967 val fileMimeType : file -> string |
968 val fileData : file -> blob | 968 val fileData : file -> blob |