javascript - Angular JS and Bootstrap Multiselect Mixin not working on Non-webkit browsers -


i have combined bootstrap multiselect , angular js in order create angular powered multiselect dropdown. however, working on webkit browsers. on non-webkit browsers, checkboxes/radiobuttons of bootstrap multiselect not getting selected upon click.

you can view running example js fiddle. http://jsfiddle.net/58bu3/1/

<select class="multiselect" data-placeholder="select products"              ng-model="productselection" ng-options="item item item in products"             multiple="multiple" multiselect-dropdown >              </select> <p>selection: {{productselection}}</p> 

comment

 onchange: function (optionelement, checked) {     } 

it work.


Comments