aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/widgets.html
diff options
context:
space:
mode:
Diffstat (limited to 'scenario/widgets.html')
-rw-r--r--scenario/widgets.html13
1 files changed, 7 insertions, 6 deletions
diff --git a/scenario/widgets.html b/scenario/widgets.html
index b83670b8..5449b218 100644
--- a/scenario/widgets.html
+++ b/scenario/widgets.html
@@ -1,11 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
- <link rel="stylesheet" type="text/css" href="style.css"></link>
+ <link rel="stylesheet" type="text/css" href="style.css"/><!--
<script type="text/javascript" src="../lib/jquery/jquery-1.4.2.js"></script>
- <script type="text/javascript" src="../src/angular-bootstrap.js#autobind"></script>
+ --><script type="text/javascript" src="../src/angular-bootstrap.js#autobind"></script>
</head>
- <body ng-init="$window.$scope = this">
+ <body ng:init="$window.$scope = this">
<table>
<tr>
<th width="330">Description</th>
@@ -72,12 +72,12 @@
<tr><th colspan="3">Buttons</th></tr>
<tr>
<td>ng-change<br/>ng-click</td>
- <td>
- <form ng-init="button.count = 0">
+ <td ng:init="button.count = 0">
+ <form>
<input type="button" value="button" ng-change="button.count = button.count + 1"/> <br/>
<input type="submit" value="submit" ng-change="button.count = button.count + 1"/><br/>
<input type="image" src="" ng-change="button.count = button.count + 1"/><br/>
- <a href="" ng-click="button.count = button.count + 1">action</a>
+ <a href="" ng:click="button.count = button.count + 1">action</a>
</form>
</td>
<td>button={{button}}</td>
@@ -93,5 +93,6 @@
<td></td>
</tr>
</table>
+-->
</body>
</html>