X Tutup
Skip to content

Commit 9e1f085

Browse files
committed
datastore scenario failing as expected
1 parent 8e9b7c6 commit 9e1f085

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

scenario/Runner.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<script type="text/javascript" src="../src/scenario/bootstrap.js"></script>
55
<script type="text/javascript" src="widgets-scenarios.js"></script>
6-
<!--<script type="text/javascript" src="datastore-scenarios.js"></script>-->
6+
<script type="text/javascript" src="datastore-scenarios.js"></script>
77
</head>
88
<body>
99
</body>

scenario/datastore.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
22
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
33
<head>
4-
<script type="text/javascript" src="../angular-bootstrap.js#database=$MEMORY"></script>
4+
<script type="text/javascript" src="../lib/underscore/underscore.js"></script>
5+
<script type="text/javascript" src="../lib/jquery/jquery-1.3.2.js"></script>
6+
<script type="text/javascript" src="../src/angular-bootstrap.js"></script>
7+
<script type="text/javascript">
8+
$(document).ready(function(){angular.compile(document).init();});
9+
</script>
510
</head>
611
<body ng-entity="book=Book" ng-init="books=Book.all()">
712
<p>{{book.$id}}</p>

0 commit comments

Comments
 (0)
X Tutup