fix generator

This commit is contained in:
Antelle 2016-02-23 17:23:33 +03:00
parent 681ec9c9aa
commit 46427a97a9
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ var GeneratorView = Backbone.View.extend({
this.createPresets();
var preset = this.preset;
this.gen = _.clone(_.find(this.presets, function(pr) { return pr.name === preset; }));
this.gen = _.clone(this.presets[1]);
$('body').one('click', this.remove.bind(this));
this.listenTo(Backbone, 'lock-workspace', this.remove.bind(this));
},