30:e1e43c8390b9
Anton Shestakov <engored@ya.ru>, Fri, 11 Jan 2013 19:10:31 +0900
Use @app.before_first_request instead of calling init_db() explicitly (so autogenerated wsgi.py files will just work).

next change 148:7a236aa969f8
previous change 8:39ac2486b9d3

static/js/framework/router.js

Permissions: -rw-r--r--

Other formats: Feeds:
var Router = Backbone.Router.extend({
routes: {
'': 'randomize',
':workspace': 'setWorkspace'
},
makeRandomString: function(length) {
return _.map(_.range(length), function() {
return (Math.random()*16|0).toString(16);
}).join('');
},
randomize: function() {
var randomString = this.makeRandomString(8);
this.navigate(randomString, {trigger: true, replace: true});
},
setWorkspace: function(workspace) {
fruitbar.trigger('workspace', workspace);
}
});