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

Renaming disabled property of Multi select because this conflicted in IE #461

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function dropdownMultiselectDirective() {
events: '=',
searchFilter: '=?',
translationTexts: '=',
disabled: '=',
disableDropdown: '=',
},
transclude: {
toggleDropdown: '?toggleDropdown',
Expand Down
2 changes: 1 addition & 1 deletion src/app/component/angularjs-dropdown-multiselect.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="multiselect-parent btn-group dropdown-multiselect"
ng-class="{open: open}">
<div ng-transclude="toggleDropdown" ng-click="toggleDropdown()">
<button ng-disabled="disabled"
<button ng-disabled="disableDropdown"
type="button"
class="dropdown-toggle"
ng-class="settings.buttonClasses"
Expand Down