Files
old-ribica/front-ui/app/app.js

13 lines
255 B
JavaScript
Raw Normal View History

2015-01-22 06:38:48 +01:00
var App = function() {
this.bootstrap = function() {
// here goes all app initialization and bootstraping logic
//this.router = new Router();
//Backbone.history.start();
2015-01-22 06:38:48 +01:00
};
};
var app = new App();
module.exports = app;