Skip to content

Commit

Permalink
working thru webkit-sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
brianleroux committed Feb 12, 2011
1 parent 0bb6e3b commit b23af85
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 259 deletions.
16 changes: 16 additions & 0 deletions examples/simple.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Lawnchair Spec</title>
<script src="../tests/lib/qunit.js" type="text/javascript"></script>
<script src="../tests/lib/json2.js" type="text/javascript"></script>
<script src="../lib/lawnchair.js" type="text/javascript"></script>
<script type="text/javascript">
var store = new Lawnchair({name:'simple-example'}, function(){

})
</script>
</head>
<body>
</body>
</html>
10 changes: 5 additions & 5 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ clean:
build:
mkdir -p ./lib && touch ./lib/lawnchair.js
cat ./src/lawnchair.js > ./lib/lawnchair.js
cat ./src/adapters/window-name.js >> ./lib/lawnchair.js
cat ./src/adapters/webkit-sqlite.js >> ./lib/lawnchair.js

# plugins being build here w/ dom adapter only for testing purposes
build-plugins:
Expand All @@ -28,9 +28,9 @@ dist:

test:
open ./tests/index.html
open ./tests/plugins/aggregation.html
open ./tests/plugins/callbacks.html
open ./tests/plugins/pagination.html
open ./tests/plugins/query.html
#open ./tests/plugins/aggregation.html
#open ./tests/plugins/callbacks.html
# open ./tests/plugins/pagination.html
# open ./tests/plugins/query.html

.PHONY: all
Loading

0 comments on commit b23af85

Please sign in to comment.