diff options
author | Adam Chlipala <adam@chlipala.net> | 2014-08-19 11:17:39 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2014-08-19 11:17:39 -0400 |
commit | 277913f2ae39e159b1a639fe1d869fd00ce1a2c7 (patch) | |
tree | 810f233362002dd1949f6528f583cfbe12cc1eba | |
parent | 2bd5faedfe7464c9f4cc6bd36084d487c7c86b2a (diff) |
<cselect> and <coption> type fixes (grandfathered into release)
-rw-r--r-- | lib/ur/basis.urs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 9d58ee66..30271ce9 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -1019,9 +1019,8 @@ val button : cformTag ([Value = string] ++ boxAttrs) [] val ccheckbox : cformTag ([Value = bool, Size = int, Source = source bool, Onchange = transaction unit] ++ boxAttrs) [] -con cselect = [Cselect] -val cselect : cformTag ([Source = source string, Onchange = transaction unit] ++ boxAttrs) cselect -val coption : unit -> tag [Value = string, Selected = bool] cselect [] [] [] +val cselect : cformTag ([Source = source string, Onchange = transaction unit] ++ boxAttrs) [Cselect] +val coption : unit -> tag [Value = string, Selected = bool] [Cselect, Body] [] [] [] val ctextarea : cformTag ([Value = string, Rows = int, Cols = int, Source = source string, Onchange = transaction unit, Ontext = transaction unit] ++ boxAttrs) [] |