Rename SELECT-MULTIPLE-TRANSFORMER to MULTIPLE-SELECT-TRANSFORMER to make things clearer.
This commit is contained in:
parent
3d5a92eb44
commit
0a510b7c76
|
@ -272,7 +272,7 @@
|
||||||
;; internal
|
;; internal
|
||||||
(define (make-multiple-select name select-options attributes)
|
(define (make-multiple-select name select-options attributes)
|
||||||
(make-multi-input-field name "mult-select"
|
(make-multi-input-field name "mult-select"
|
||||||
select-multiple-transformer
|
multiple-select-transformer
|
||||||
(make-field-attributes
|
(make-field-attributes
|
||||||
select-options
|
select-options
|
||||||
`((multiple)
|
`((multiple)
|
||||||
|
@ -291,7 +291,7 @@
|
||||||
(sxml-attribute-attributes attributes))
|
(sxml-attribute-attributes attributes))
|
||||||
make-select-html-tree))
|
make-select-html-tree))
|
||||||
|
|
||||||
(define (select-multiple-transformer select bindings)
|
(define (multiple-select-transformer select bindings)
|
||||||
(let ((name (input-field-name select))
|
(let ((name (input-field-name select))
|
||||||
(select-options (field-attributes-default
|
(select-options (field-attributes-default
|
||||||
(input-field-attributes select))))
|
(input-field-attributes select))))
|
||||||
|
|
Loading…
Reference in New Issue