blob: dff567813d32396d113bf244678044d74d32bbb7 [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-multi-bootstrap-jquery</title>
<script src="../../components/jquery-1.10.2/jquery.js"></script>
<script src="../../../angular.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>