-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
23 lines (19 loc) · 675 Bytes
/
main.js
File metadata and controls
23 lines (19 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(function() {
var bootstrap;
global.$ = $;
global.jQuery = jQuery;
global.console = console;
global.document = document;
global.CodeMirror = CodeMirror;
global.process = process;
global._instances={}
global.GUI = require('nw.gui')
global.CODEMIRROR_LOCATION= "vendor/codemirror-3.0rc2"
require("coffee-script");
global.Backbone = require('backbone'); //# TODO: make this not required for running tests
global._ = require('underscore'); //# TODO: make this not required for running tests
require('backbone-filtered-collection');
$(document).ready(function() {
require("./lib/application").application().bootstrap();
});
}).call(this);