Sha256: 03dac9dcd2933e84cb0c0ea280ff90c56f8a95ad7d728acd2f8e59fc880fba66
Contents?: true
Size: 868 Bytes
Versions: 185
Compression:
Stored size: 868 Bytes
Contents
HAL.Views.Inspector = Backbone.View.extend({ initialize: function(opts) { this.vent = opts.vent; _.bindAll(this, 'renderDocumentation'); _.bindAll(this, 'renderResponse'); this.vent.bind('show-docs', this.renderDocumentation); this.vent.bind('response', this.renderResponse); }, className: 'inspector span6', render: function() { this.$el.html(this.template()); }, renderResponse: function(response) { var responseView = new HAL.Views.Response({ vent: this.vent }); this.render(); responseView.render(response); this.$el.append(responseView.el); }, renderDocumentation: function(e) { var docView = new HAL.Views.Documenation({ vent: this.vent }); this.render(); docView.render(e.url); this.$el.append(docView.el); }, template: function() { return '<h1>Inspector</h1>'; } });
Version data entries
185 entries across 185 versions & 1 rubygems