I have installed the bower component in my angularjs application, I have a multiselect
<select class="multiselect" id="mdf.modifier.id" multiple="multiple" >
<option disabled selected value> -- select {{mdf.modifier.max == 1 ? 'one' : 'multiple' }} -- </option>
<option ng-repeat="option in mdf.options" value="option.id" track by option.id>
{{ option.name | highlight:for_user }}, +{{ option.price }}
</option>
</select>
And calling the javascript method from my controller
$('.multiselect').multiselect();
My multiselect is getting out as an empty multiselect. The ng-repeat does print some options I have checked.