diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-01-11 10:05:06 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-01-11 10:05:06 -0500 |
commit | 40a04276005343f3dbc7d963a425e382a4e20701 (patch) | |
tree | ebe069f042def365bd9c7cd68522d305e82f7eb7 /lib | |
parent | 9608c763d7b2923c11e8abd29e28271ae470a5fe (diff) |
Hooking a source into an input
Diffstat (limited to 'lib')
-rw-r--r-- | lib/basis.urs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/basis.urs b/lib/basis.urs index dddc8bde..9b09e8d2 100644 --- a/lib/basis.urs +++ b/lib/basis.urs @@ -423,7 +423,7 @@ con formTag = fn (ty :: Type) (inner :: {Unit}) (attrs :: {Type}) => -> fn [[Form] ~ ctx] => nm :: Name -> unit -> tag attrs ([Form] ++ ctx) inner [] [nm = ty] -val textbox : formTag string [] [Value = string, Size = int] +val textbox : formTag string [] [Value = string, Size = int, Source = source string] val password : formTag string [] [Value = string, Size = int] val textarea : formTag string [] [Rows = int, Cols = int] |