define(['jquery', 'backbone', 'underscore', 'models/TreeCollection', 'views/packageView', 'views/fileView'],
function($, Backbone, _, TreeCollection, packageView, fileView) {
// Renders whole PackageView
return Backbone.View.extend({
el: '#content',
events: {
'click #add': 'addPackage',
'keypress #name': 'addOnEnter'
},
initialize: function() {
_.bindAll(this, 'render');
this.tree = new TreeCollection();
},
init: function() {
var self = this;
this.tree.fetch({success: function() {
self.render();
}});
},
render: function() {
this.$el.html("
");
var packs = this.tree.get('packages'),
files = this.tree.get('files');
this.$el.append($('Root: ' + this.tree.get('root').get('name') + ' '));
this.$el.append($(''));
this.$el.append($(' Add
'));
var ul = $('