Sha256: 9010ae2f3400a8ffd5f2c85061329749f89b849da6a3cf3fda999fa138d887c9
Contents?: true
Size: 557 Bytes
Versions: 185
Compression:
Stored size: 557 Bytes
Contents
HAL.Views.Explorer = Backbone.View.extend({ initialize: function(opts) { var self = this; this.vent = opts.vent; this.navigationView = new HAL.Views.Navigation({ vent: this.vent }); this.resourceView = new HAL.Views.Resource({ vent: this.vent }); }, className: 'explorer span6', render: function() { this.navigationView.render(); this.$el.html(this.template()); this.$el.append(this.navigationView.el); this.$el.append(this.resourceView.el); }, template: function() { return '<h1>Explorer</h1>'; } });
Version data entries
185 entries across 185 versions & 1 rubygems