diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index aa89f8115..db61bd008 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -538,10 +538,11 @@ $.extend(fixmystreet.set_up, { function make_multi(id) { var $id = $('#' + id), all = $id.data('all'), + none = $id.data('none') || all, allOpts = $id.data('allOptions') || []; $id.multiSelect({ allText: all, - noneText: all, + noneText: none, positionMenuWithin: $('#side'), presets: [{ name: all, |