You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
angular-promises/app/views/main.html

19 lines
362 B
HTML

<div class="header">
<h2 class="text-muted">Angular Promises</h2>
</div>
<div>
<h2>API Call Result: </h2>
<button ng-click="loadData()">LoadData</button>
<button ng-click="loadDataWithFailOver()">LoadData With Failover</button>
<hr>
<br>
<table>
<tr ng-repeat="r in result.rows">
<td><h3>{{r.doc.title}}</h3></td>
</tr>
</table>
</div>