aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/fixmystreet/fixmystreet.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js
index 8e8941421..6480f47f5 100644
--- a/web/cobrands/fixmystreet/fixmystreet.js
+++ b/web/cobrands/fixmystreet/fixmystreet.js
@@ -722,14 +722,15 @@ $.extend(fixmystreet.set_up, {
function make_multi(id) {
var $id = $('#' + id),
- all = $id.data('all');
+ all = $id.data('all'),
+ allOpts = $id.data('allOptions') || [];
$id.multiSelect({
allText: all,
noneText: all,
positionMenuWithin: $('#side'),
presets: [{
name: all,
- options: []
+ options: allOpts
}]
});
}