Skip to content
This repository was archived by the owner on Dec 16, 2019. It is now read-only.

Commit 3a8f14a

Browse files
committed
Added setting styleActive
type: Boolean default: false Description: Indicates if the list items should get a class active applied when they are selected.
1 parent 82dd992 commit 3a8f14a

File tree

4 files changed

+52
-5
lines changed

4 files changed

+52
-5
lines changed

dist/angularjs-dropdown-multiselect.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pages/javascripts/pages/home/ExampleCtrl.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,16 @@ angular.module('exampleApp').controller('ExampleCtrl', ['$scope', function($scop
154154
enableSearch: true
155155
};
156156

157+
$scope.example16model = [];
158+
$scope.example16data = [
159+
{ id: 1, label: "David" },
160+
{ id: 2, label: "Jhon" },
161+
{ id: 3, label: "Lisa" },
162+
{ id: 4, label: "Nicole" },
163+
{ id: 5, label: "Danny" }];
164+
$scope.example16settings = {
165+
styleActive: true
166+
};
167+
157168
$scope.customFilter = 'a';
158169
}]);

0 commit comments

Comments
 (0)