angularjs-dropdown-multiselect
Version:
This directive gives you a Bootstrap Dropdown with the power of AngularJS directives.
22 lines (20 loc) • 486 B
JavaScript
import controller from './angularjs-dropdown-multiselect.controller';
export default function dropdownMultiselectDirective() {
return {
restrict: 'AE',
scope: {
selectedModel: '=',
options: '=',
extraSettings: '=',
events: '=',
searchFilter: '=?',
translationTexts: '=',
disabled: '=',
},
transclude: {
toggleDropdown: '?toggleDropdown',
},
controller,
templateUrl: 'app/component/angularjs-dropdown-multiselect.html',
};
}