Skip to content

Instantly share code, notes, and snippets.

@homer2
homer2 / angular-bootstrap-multiselect.ts
Last active December 27, 2017 07:35 — forked from ethanph5/angular-bootstrap-multiselect.js
AngularJS directive using bootstrap-multiselect
// AngularJS: 1.5.8
// bootstrap-multiselect: 0.9.13
angular.module('SocoApp')
.directive('multiSelect', function () {
return {
link: function (scope, element, attrs: any) {
var options: any = {
onChange: function (optionElement, checked) {