Sha256: e9cce73483c20a2fb2bb9db5ad94bec16d224d44d27d21a61c2fc46cdd88c55e
Contents?: true
Size: 548 Bytes
Versions: 30
Compression:
Stored size: 548 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: 'col-6', 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
30 entries across 30 versions & 1 rubygems