Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!-- Contacts List Section -->
  2. <div class="col-md-3 contact-list">
  3. <div class="list-group">
  4. <a href="javascript:void(0);" ng-repeat="contact in groups.contacts" class="list-group-item" ng-click="selectContact(contact)">{{group.firstName}} {{group.lastName}}
  5. <span ng-click="deleteContact()" class="onHover pull-right"><i class="fa fa-times"></i></span>
  6. </a>
  7. </div>
  8. <button ng-click="isCreatingNewContact = true" class="btn btn-default"><i class="fa fa-plus"></i> New Contact</button>
  9. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement