-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchoice_tree.js
32 lines (26 loc) · 897 Bytes
/
choice_tree.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// This is the source file for the ChooseReconstructions site, written using
// Backbone.js. The whole thing is completely static, all the content is
// hard-coded at the end of this file.
//
// by Olav Stetter, 2013
/** @depend lib/jquery-1.7.2.min.js
* @depend lib/underscore-min.js
* @depend lib/backbone.js
* @depend config.js
* @depend models/method.js
* @depend models/filter.js
* @depend collections/method_collection.js
* @depend collections/filter_collection.js
* @depend views/method_view.js
* @depend views/filter_view.js
* @depend views/method_section.js
* @depend views/filter_section.js
* @depend views/modal_view.js
* @depend views/app_view.js
* @depend fixtures/methods.js
*/
var app = app || {};
app.filters = new app.FilterList();
app.filters.generate_from_method_collection(app.methods);
// start app
new app.AppView(app.methods, app.filters);