158:5fcf0955129c
Anton Shestakov <av6@dwimlabs.net>, Tue, 31 Oct 2017 12:53:48 +0800
provision: add CSP header, *-src are either 'self' or 'none'

previous change 148:7a236aa969f8

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);
}
});