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