7b73d909 by Adam Heath

Make certain to quote the key when building the query string.

1 parent 023217a0
...@@ -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) {
......