When using AngularJS to list options in a dropdown based on the ng-repeat value, how can I determine which options are selected in a multi-select dropdown like the one shown below:
<select custom-select ng-model="selectedEmp" data-container="body" multiple="">
<option value="{{ emp._id }}" ng-repeat="emp in employeeList">
{{ emp.first_name }} {{ emp.last_name }}
</option>
</select>