aboutsummaryrefslogtreecommitdiffstats
path: root/scenario
diff options
context:
space:
mode:
authorMisko Hevery2010-04-20 18:14:13 -0700
committerMisko Hevery2010-04-20 18:14:13 -0700
commit22d93e0a3bc2a6dc0f64c63c68bc8f8489ea9068 (patch)
tree5f65b04ac9fb5a69d87ac40434a14367e6c1d4fc /scenario
parent259c2bba4bf1fc4f0d4cf5bcda4ffef0fb5a615a (diff)
downloadangular.js-22d93e0a3bc2a6dc0f64c63c68bc8f8489ea9068.tar.bz2
fixes to enable ie
Diffstat (limited to 'scenario')
-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>