Updating.

This commit is contained in:
Elf M. Sternberg 2016-04-05 13:40:44 -07:00
parent 3c07f12fe2
commit d57177c22f
25 changed files with 38 additions and 4 deletions

2
.gitignore vendored
View File

@ -3,4 +3,6 @@
*# *#
.#* .#*
.DS_Store .DS_Store
./thestore/lib
node_modules
*~ *~

View File

@ -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

View File

@ -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}

28
package.json Normal file
View File

@ -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"
}

View File

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

View File

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -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>