// Generated by CoffeeScript 1.10.0 (function() { window.AppView = Backbone.D3View.extend({ initialize: function() { return d3.text('minidot.peg.js', (function(_this) { return function(grammar) { var editor, left, matrix, node_link; left = _this.d3el.append('div').attr({ "class": 'left' }); editor = new Editor({ model: _this.model, grammar: grammar }); left.node().appendChild(editor.el); editor.render(); matrix = new Matrix({ model: _this.model }); left.node().appendChild(matrix.el); matrix.render(); node_link = new NodeLink({ model: _this.model }); _this.el.appendChild(node_link.el); return node_link.render(); }; })(this)); } }); }).call(this);