You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
fix($selectMultiple): allow user to override getPlaceholder() Behavior
User can provide their custom `getPlaceholder()` function. E.g. to keep placeholder activated in multipleSelect component, you can use this one:
```
angular.module('myApp').directive('myAppUiSelectPlaceholderAlwaysVisible', function() {
return {
require: 'uiSelect',
link: function($scope, $element, attrs, $select) {
$select.getPlaceholder = function () {
return $select.placeholder;
}
}
}
});
```
And then add this directive to the `<ui-select>` html element
closes#1796
0 commit comments