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

Commit 98c179a

Browse files
committed
removed some whitespace
1 parent d7a5df2 commit 98c179a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uiSelectChoicesDirective.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ uis.directive('uiSelectChoices',
6666
scope.$watch('$select.search', function(newValue) {
6767
if(newValue && !$select.open && $select.multiple) $select.activate(false, true);
6868
$select.activeIndex = $select.tagging.isActivated ? -1 : 0;
69-
if ((!attrs.minimumInputLength || $select.search.length >= attrs.minimumInputLength)) {
69+
if (!attrs.minimumInputLength || $select.search.length >= attrs.minimumInputLength) {
7070
$select.refresh(attrs.refresh);
7171
} else {
7272
$select.items = [];
@@ -78,7 +78,7 @@ uis.directive('uiSelectChoices',
7878
var refreshDelay = scope.$eval(attrs.refreshDelay);
7979
$select.refreshDelay = refreshDelay !== undefined ? refreshDelay : uiSelectConfig.refreshDelay;
8080
});
81-
81+
8282
scope.$watch('$select.open', function(open) {
8383
if (open) {
8484
tElement.attr('role', 'listbox');

0 commit comments

Comments
 (0)