Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <div ng-controller="ListController" ng-init="init()" id="container-[[ parentId ]]">
  2. <div class="col-sm-2">
  3. <div ng-class="{'filter-input-selected': hasAssignedFile}" class="input-group filter-input">
  4. <span class="input-group-addon" id="basic-addon1"><span class="glyphicon glyphicon-filter" aria-hidden="true"></span></span>
  5. <input ng-model="search" type="text" class="form-control" placeholder="Filter..." aria-describedby="basic-addon1">
  6. </div>
  7. <div class="list-group" ng-class="{'elevate-selected-item': hasAssignedFile}">
  8. <a ng-repeat="item in files | filter:search:strict | orderBy:['selected', 'name']"
  9. ng-click="performListAction(item)" href="#"
  10. ng-animate="animate"
  11. ng-class="{'list-group-item-info': hover}"
  12. ng-mouseenter="hover = true"
  13. ng-mouseleave="hover = false"
  14. class="[[ item.childCount | drillable ]] [[ item | testSelected:file ]] slide list-group-item drillable-item filterable">
  15. <span class="badge">[[ item.count ]]</span>
  16. <h4 style="margin-top:0px;" ng-bind-html="item.name | hl:search"></h4>
  17.  
  18. <p class="deemphasize" ng-bind-html="item.description | hl:search"></p>
  19. </a>
  20. </div>
  21. </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement