Skip to content
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.

Commit

Permalink
chore(autocomplete): Removed unused CSS classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenford committed Dec 7, 2013
1 parent 6278d0a commit 1480514
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/ng-tags-input.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@
z-index: 999;
}

.ngTagsInput .autocomplete ul.suggestions {
.ngTagsInput .autocomplete ul {
margin: 0;
padding: 0;
list-style-type: none;
}

.ngTagsInput .autocomplete li.suggestion {
.ngTagsInput .autocomplete li {
padding: 3px 16px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 20px;
Expand Down
2 changes: 1 addition & 1 deletion build/ng-tags-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ tagsInput.run(["$templateCache", function($templateCache) {
);

$templateCache.put('ngTagsInput/auto-complete.html',
"<div class=\"autocomplete\" ng-show=\"suggestionList.visible\"><ul class=\"suggestions\"><li class=\"suggestion\" ng-repeat=\"item in suggestionList.items | limitTo:options.maxResultsToShow\" ng-class=\"{selected: item == suggestionList.selected}\" ng-click=\"addSuggestion()\" ng-mouseenter=\"suggestionList.select($index)\" ng-bind-html=\"highlight(item)\"></li></ul></div>"
"<div class=\"autocomplete\" ng-show=\"suggestionList.visible\"><ul><li ng-repeat=\"item in suggestionList.items | limitTo:options.maxResultsToShow\" ng-class=\"{selected: item == suggestionList.selected}\" ng-click=\"addSuggestion()\" ng-mouseenter=\"suggestionList.select($index)\" ng-bind-html=\"highlight(item)\"></li></ul></div>"
);
}]);

Expand Down
Binary file modified build/ng-tags-input.min.zip
Binary file not shown.
Binary file modified build/ng-tags-input.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions css/autocomplete.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
z-index: 999;
}

.ngTagsInput .autocomplete ul.suggestions {
.ngTagsInput .autocomplete ul {
margin: 0;
padding: 0;
list-style-type: none;
}

.ngTagsInput .autocomplete li.suggestion {
.ngTagsInput .autocomplete li {
padding: 3px 16px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 20px;
Expand Down
5 changes: 2 additions & 3 deletions templates/auto-complete.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<div class="autocomplete" ng-show="suggestionList.visible">
<ul class="suggestions">
<li class="suggestion"
ng-repeat="item in suggestionList.items | limitTo:options.maxResultsToShow"
<ul>
<li ng-repeat="item in suggestionList.items | limitTo:options.maxResultsToShow"
ng-class="{selected: item == suggestionList.selected}"
ng-click="addSuggestion()"
ng-mouseenter="suggestionList.select($index)"
Expand Down

0 comments on commit 1480514

Please sign in to comment.