Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aurbano committed Apr 16, 2015
1 parent 62c1834 commit 9fa5036
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ This is the only visible element created by the directive, `smart-area` doesn't
The dropdown is generated with the following markup:

```html
<div class="sa-dropdown" ng-show="dropdown.content.length > 0">
<input type="text" class="form-control" ng-model="dropdown.filter" ng-show="dropdown.showFilter"/>
<div class="sa-dropdown">
<input type="text" class="form-control"/>
<ul class="dropdown-menu" role="menu" style="position:static">
<li ng-repeat="element in dropdown.content | filter:dropdown.filter" role="presentation">
<a href="" role="menuitem" ng-click="dropdown.selected(element)" ng-class="{active: $index == dropdown.current}" ng-bind-html="element.display"></a>
<a href="" role="menuitem"></a>
</li>
</ul>
</div>
Expand Down

0 comments on commit 9fa5036

Please sign in to comment.