summaryrefslogtreecommitdiffstats
path: root/templates/addressBookList.html
blob: 4a9b07384f35442eb46dba5c40110444931803b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<i ng-show="ctrl.loading" style="display: block" class="icon-loading-small"></i>
<ul class="addressBookList">
	<li ng-repeat="addressBook in ctrl.addressBooks" addressbook data="addressBook" list="ctrl.addressBooks"></li>
	<li>
		<form ng-submit="ctrl.createAddressBook()">
			<input id="newList" placeholder="{{ctrl.t.addressBookName}}" class="newAddressBookInput"
				   ng-model="ctrl.newAddressBookName" type="text"
				   autocomplete="off" autocorrect="off" spellcheck="false" />
			<input type="submit" value="" class="newAddressBookSubmit inline-button icon-confirm action pull-right" />
		</form>
	</li>
</ul>