aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/datastore.html
diff options
context:
space:
mode:
authorMisko Hevery2010-07-02 15:39:47 -0700
committerMisko Hevery2010-07-02 15:39:57 -0700
commit1f0562150921ea2f05149b64ef0440937491def9 (patch)
tree20c1c2c69038a7d02d720b811453df6438d274a5 /scenario/datastore.html
parent105e9443c4170870dd34f69073a6eafaabeaf567 (diff)
downloadangular.js-1f0562150921ea2f05149b64ef0440937491def9.tar.bz2
change all attributes from ng- to ng: prefix
Diffstat (limited to 'scenario/datastore.html')
-rw-r--r--scenario/datastore.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/scenario/datastore.html b/scenario/datastore.html
index 525d3636..1720b3bc 100644
--- a/scenario/datastore.html
+++ b/scenario/datastore.html
@@ -8,9 +8,9 @@
$(document).ready(function(){angular.compile(document).init();});
</script>
</head>
- <body ng-entity="book=Book" ng-init="books=Book.all()">
+ <body ng-entity="book=Book" ng:init="books=Book.all()">
<p>{{book.$id}}</p>
- <li ng-repeat="book in books.$orderBy('name')">
+ <li ng:repeat="book in books.$orderBy('name')">
<li>{{book.name}}</li>
</li>
</body>