minor change: changing attribute order in textarea input field
This commit is contained in:
parent
219bcaa4fe
commit
27fbf65f2b
|
@ -113,10 +113,10 @@
|
|||
(readonly symbol?)
|
||||
(attributes sxml-attribute?))
|
||||
(let ((extra-attributes '()))
|
||||
(if rows (set! extra-attributes (cons `(rows ,rows) extra-attributes)))
|
||||
(if cols (set! extra-attributes (cons `(cols ,cols) extra-attributes)))
|
||||
(if (eq? readonly 'readonly)
|
||||
(set! extra-attributes (cons '(readonly) extra-attributes)))
|
||||
(if cols (set! extra-attributes (cons `(cols ,cols) extra-attributes)))
|
||||
(if rows (set! extra-attributes (cons `(rows ,rows) extra-attributes)))
|
||||
(make-input-field
|
||||
name "textarea"
|
||||
identity
|
||||
|
|
Loading…
Reference in New Issue