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

Commit 7ee06b3

Browse files
author
Brian Feister
committed
cleanup
1 parent a2f0b28 commit 7ee06b3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/select.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@
163163
ctrl.refreshDelay = undefined; // Initialized inside uiSelectChoices directive link function
164164
ctrl.multiple = false; // Initialized inside uiSelect directive link function
165165
ctrl.disableChoiceExpression = undefined; // Initialized inside uiSelect directive link function
166-
ctrl.$filter = $filter;
167166
ctrl.tagging = {isActivated: false, fct: undefined};
168167
ctrl.taggingTokens = {isActivated: false, tokens: undefined};
169168
ctrl.lockChoiceExpression = undefined; // Initialized inside uiSelect directive link function
@@ -977,7 +976,7 @@
977976
attrs.$observe('tagging', function() {
978977
if(attrs.tagging !== undefined)
979978
{
980-
// $eval() is needed otherwise we get a string instead of a function or a boolean
979+
// $eval() is needed otherwise we get a string instead of a boolean
981980
var taggingEval = scope.$eval(attrs.tagging);
982981
$select.tagging = {isActivated: true, fct: taggingEval !== true ? taggingEval : undefined};
983982
}

0 commit comments

Comments
 (0)