diff options
author | Adam Chlipala <adamc@csail.mit.edu> | 2017-01-02 11:04:34 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@csail.mit.edu> | 2017-01-02 11:04:34 -0500 |
commit | 4e1f94952d1f8b861e52decddcadbbdc4f83d32f (patch) | |
tree | 2163b0540c6d0c48755abdf110c07de1d4e3a58f /lib/ur | |
parent | b6ef142f8950b1b5271b68f18ec44f38f88b5851 (diff) |
Add 'placeholder' attribute for textareas
Diffstat (limited to 'lib/ur')
-rw-r--r-- | lib/ur/basis.urs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 82d8f6e4..23896e27 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -982,7 +982,7 @@ val hidden : formTag string [] [Data = data_attr, Id = string, Value = string] val textbox : formTag string [] ([Value = string, Size = int, Placeholder = string, Source = source string, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs ++ inputAttrs) val password : formTag string [] ([Value = string, Size = int, Placeholder = string, Onchange = transaction unit] ++ boxAttrs ++ inputAttrs) -val textarea : formTag string [] ([Rows = int, Cols = int, Onchange = transaction unit, +val textarea : formTag string [] ([Rows = int, Cols = int, Placeholder = string, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs ++ inputAttrs) val checkbox : formTag bool [] ([Checked = bool, Onchange = transaction unit] ++ boxAttrs) @@ -1092,7 +1092,7 @@ val ccheckbox : cformTag ([Size = int, Source = source bool, Onchange = transact val cselect : cformTag ([Source = source string, Onchange = transaction unit] ++ boxAttrs) [Cselect] val coption : unit -> tag [Value = string, Selected = bool] [Cselect, Body] [] [] [] -val ctextarea : cformTag ([Rows = int, Cols = int, Source = source string, Onchange = transaction unit, +val ctextarea : cformTag ([Rows = int, Cols = int, Placeholder = string, Source = source string, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs ++ inputAttrs) [] (*** Tables *) |