diff options
Diffstat (limited to 'angular-multi-select.js')
-rw-r--r-- | angular-multi-select.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/angular-multi-select.js b/angular-multi-select.js index f7e0d4a..d2a7033 100644 --- a/angular-multi-select.js +++ b/angular-multi-select.js @@ -158,7 +158,7 @@ angular.module( 'multi-select', ['ng'] ).directive( 'multiSelect' , [ '$sce', fu $scope.varButtonLabel += ', ... (Total: ' + $scope.selectedItems.length + ')'; } } - $scope.varButtonLabel = $sce.trustAsHtml( $scope.varButtonLabel + ' ▾' ); + $scope.varButtonLabel = $sce.trustAsHtml( $scope.varButtonLabel + '<span class="multiSelect caret"></span>' ); } // Check if a checkbox is disabled or enabled. It will check the granular control (disableProperty) and global control (isDisabled) |