blob: 94c2bef47577a1757102463291df44d232ce02f0 [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-multi-bootstrap</title>
<script src="../../../angular.min.js"></script>
<script src="controller.js"></script>
</head>
<body ng-app="multi-bootstrap">
<script src="../../../angular.js"></script>
<div ng-controller="BrokenTable">
<table>
<tr>
<th ng-repeat="heading in headings">{{heading}}</th>
</tr>
<tr ng-repeat="filling in fillings">
<td ng-repeat="fill in filling">{{fill}}</td>
</tr>
</table>
</div>
</body>
</html>