aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/widgets.html
diff options
context:
space:
mode:
Diffstat (limited to 'scenario/widgets.html')
-rw-r--r--scenario/widgets.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/scenario/widgets.html b/scenario/widgets.html
index 6cb8df05..ab27e490 100644
--- a/scenario/widgets.html
+++ b/scenario/widgets.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css"></link>
- <!--<script type="text/javascript" src="../lib/jquery/jquery-1.4.2.js"></script>-->
+ <script type="text/javascript" src="../lib/jquery/jquery-1.4.2.js"></script>
<script type="text/javascript" src="../src/angular-bootstrap.js#autobind"></script>
</head>
<body ng-init="$window.$scope = this">
@@ -82,6 +82,16 @@
</td>
<td>button={{button}}</td>
</tr>
+ <tr><th colspan="3">Repeaters</th></tr>
+ <tr>
+ <td>ng-repeat</td>
+ <td>
+ <ul>
+ <li ng-repeat="name in ['misko', 'adam']">{{name}}</li>
+ </ul>
+ </td>
+ <td></td>
+ </tr>
</table>
</body>
</html>