We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7447658 commit 86485fcCopy full SHA for 86485fc
src/input-tags.template.html
@@ -11,6 +11,7 @@
11
</div>
12
13
<input-tags-auto-complete source="$ctrl.suggestions"
14
+ ng-if="$ctrl.maxLength > $ctrl.tags.length"
15
on-tag-add="$ctrl.addTag(tag)"
16
visible="$ctrl.autocompleteVisible"></input-tags-auto-complete>
17
@@ -20,10 +21,11 @@
20
21
tabindex="{{$ctrl.tabindex}}"
22
placeholder="{{$ctrl.placeholder}}"
23
spellcheck="{{$ctrl.spellcheck}}"
24
+ data-ng-if="$ctrl.maxLength > $ctrl.tags.length"
25
data-ng-model="$ctrl.inputSearch"
26
ng-model-options="{ debounce: $ctrl.inputDebounce }"
27
data-ng-change="$ctrl.inputChange()"
28
data-ng-disabled="$ctrl.disabled"
29
data-ng-focus="$ctrl.triggerFocus($event)"
30
data-ng-blur="$ctrl.triggerBlur($event)">
-</div>
31
+</div>
0 commit comments