Skip to content

Commit 49b0129

Browse files
Arthur AgombartArthur Agombart
authored andcommitted
minor updates
1 parent 3a85cac commit 49b0129

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-input-tags",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "AngularJS Component for input tags",
55
"author": {
66
"name": "Arthur Agombart",

src/input-tags.template.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<ul class="ait-dropdown"
33
ng-if="$ctrl.maxLength > $ctrl.tags.length"
44
ng-show="$ctrl.autocompleteVisible">
5-
<li class="ait-dropdown-title"
5+
<li class="ait-dropdown-item ait-dropdown-title"
66
ng-if="$ctrl.path.length > 0"
77
ng-click="$ctrl.previous()">
8-
<span class="ait-dropdown-titleBack"></span>
9-
<span class="ait-dropdown-titleContent"
8+
<span class="ait-dropdown-itemBack"></span>
9+
<span class="ait-dropdown-itemContent"
1010
ng-bind="$ctrl.currentItem[$ctrl.displayProperty]"></span>
1111
</li>
1212
<li class="ait-dropdown-item"
1313
ng-repeat="item in $ctrl.currentItem.data track by item.code"
1414
ng-click="item.data && item.data.length > 0 ? $ctrl.next(item) : $ctrl.addTag(item)">
15-
<span class="ait-dropdown-itemNext"
16-
ng-bind="item[$ctrl.displayProperty]"></span>
1715
<span class="ait-dropdown-itemContent"
1816
ng-if="item.data && item.data.length > 0"></span>
17+
<span class="ait-dropdown-itemNext"
18+
ng-bind="item[$ctrl.displayProperty]"></span>
1919
<span class="ait-dropdown-itemCheck"></span>
2020
</li>
2121
</ul>

0 commit comments

Comments
 (0)