aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/datastore.html
diff options
context:
space:
mode:
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>