Fix and document latex output how-to.
This commit is contained in:
parent
66586d8aad
commit
5c0e58df88
|
@ -3,6 +3,12 @@
|
||||||
\usepackage{hyperref}
|
\usepackage{hyperref}
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
|
% Generate code and documentation with:
|
||||||
|
%
|
||||||
|
% noweave -filter l2h -delay -x -html backbonestore.nw | htmltoc > backbonestore.html
|
||||||
|
% notangle -Rstore.js backbonestore.nw > store.js
|
||||||
|
% notangle -Rindex.html backbonestore.nw > index.html
|
||||||
|
|
||||||
I've been learning how to use \nwanchorto{http://documentcloud.github.com/backbone/}{Backbone.js}, a nifty little library for
|
I've been learning how to use \nwanchorto{http://documentcloud.github.com/backbone/}{Backbone.js}, a nifty little library for
|
||||||
organizing your client-side Javascript into a classic
|
organizing your client-side Javascript into a classic
|
||||||
Model-View-Controller paradigm while trying (and to some extent,
|
Model-View-Controller paradigm while trying (and to some extent,
|
||||||
|
@ -139,7 +145,7 @@ var IndexView = Backbone.View.extend({
|
||||||
@
|
@
|
||||||
|
|
||||||
This code defines a [[Backbone.View]] object, in which the parent element
|
This code defines a [[Backbone.View]] object, in which the parent element
|
||||||
is #main, the render function fades out the existing elements in that
|
is \#main, the render function fades out the existing elements in that
|
||||||
position and replaces them with the contents of a rendered jQuery
|
position and replaces them with the contents of a rendered jQuery
|
||||||
template, and then fades the element back in.
|
template, and then fades the element back in.
|
||||||
|
|
||||||
|
|
58
spiral.js
58
spiral.js
|
@ -1,58 +0,0 @@
|
||||||
(function() {
|
|
||||||
|
|
||||||
var User = Backbone.Model.extend({
|
|
||||||
schema: null
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
var SpiralGeneticsLoginController = {
|
|
||||||
|
|
||||||
init: function(spec) {
|
|
||||||
sgcl.this = sgcl.User({}).fetch();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
var SpiralGenetics = Backbone.Controller.extend({
|
|
||||||
|
|
||||||
routes: {
|
|
||||||
"": "dashboard",
|
|
||||||
"!pipelines": pipelines,
|
|
||||||
"!pipeline/:pipeline", pipeline,
|
|
||||||
"!datasets": datasets,
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
dashboard: function() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
pipelines: function() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
pipeline: function(pipeline_url) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
datasets: function(dataset_url) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
jobs: function() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
job: function(job_url) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
app = SpiralGenetics.init();
|
|
||||||
}
|
|
||||||
})();
|
|
Loading…
Reference in New Issue