Make certain to quote the key when building the query string.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -135,7 +135,7 @@ define(function(require) { | ... | @@ -135,7 +135,7 @@ define(function(require) { |
135 | var checkedItems = []; | 135 | var checkedItems = []; |
136 | impl.get('items').each(function(item) { | 136 | impl.get('items').each(function(item) { |
137 | if (item.get('checked')) { | 137 | if (item.get('checked')) { |
138 | checkedItems.push(item.get('key')); | 138 | checkedItems.push(impl.queryValue ? impl.queryValue(item) : item.get('key')); |
139 | } | 139 | } |
140 | }); | 140 | }); |
141 | if (checkedItems.length) { | 141 | if (checkedItems.length) { | ... | ... |
-
Please register or sign in to post a comment