Updating.
|
@ -3,4 +3,6 @@
|
||||||
*#
|
*#
|
||||||
.#*
|
.#*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
./thestore/lib
|
||||||
|
node_modules
|
||||||
*~
|
*~
|
||||||
|
|
4
Makefile
|
@ -6,6 +6,10 @@ ECHO= /bin/echo
|
||||||
|
|
||||||
all: index.html store.js
|
all: index.html store.js
|
||||||
|
|
||||||
|
init:
|
||||||
|
bower install jquery backbone underscore
|
||||||
|
npm install
|
||||||
|
|
||||||
.nw.html:
|
.nw.html:
|
||||||
$(NOWEAVE) -filter l2h -delay -x -index -autodefs c -html $*.nw > $*.html
|
$(NOWEAVE) -filter l2h -delay -x -index -autodefs c -html $*.nw > $*.html
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
% -*- Mode: noweb; noweb-code-mode: javascript-mode ; noweb-doc-mode: latex-mode -*-
|
% -*- Mode: poly-noweb+coffee; -*-
|
||||||
\documentclass{article}
|
\documentclass{article}
|
||||||
\usepackage{noweb}
|
\usepackage{noweb}
|
||||||
\usepackage[T1]{fontenc}
|
\usepackage[T1]{fontenc}
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "the-backbone-store",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A Backbone Tutorial",
|
||||||
|
"main": "backbone.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+ssh://git@github.com/elfsternberg/The-Backbone-Store.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"tutorial",
|
||||||
|
"backbone",
|
||||||
|
"jquery"
|
||||||
|
],
|
||||||
|
"devDependencies": {
|
||||||
|
"coffee-script": "1.6.x",
|
||||||
|
"http-server": "0.9.x"
|
||||||
|
},
|
||||||
|
"author": "Elf M. Sternberg <elf.sternberg@gmail.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/elfsternberg/The-Backbone-Store/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/elfsternberg/The-Backbone-Store#readme"
|
||||||
|
}
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -67,9 +67,9 @@
|
||||||
|
|
||||||
<div id="main"> </div>
|
<div id="main"> </div>
|
||||||
</div>
|
</div>
|
||||||
<script src="jquery-1.6.2.min.js" type="text/javascript"></script>
|
<script src="lib/jquery-1.6.2.min.js" type="text/javascript"></script>
|
||||||
<script src="underscore.js" type="text/javascript"></script>
|
<script src="lib/underscore.js" type="text/javascript"></script>
|
||||||
<script src="backbone.js" type="text/javascript"></script>
|
<script src="lib/backbone.js" type="text/javascript"></script>
|
||||||
<script src="store.js" type="text/javascript"></script>
|
<script src="store.js" type="text/javascript"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|