Sha256: 146cb9ace3e5b1660a354290f0083d2569880dc50b2f6f040b03d159e624fb96
Contents?: true
Size: 505 Bytes
Versions: 215
Compression:
Stored size: 505 Bytes
Contents
HAL.Views.Navigation = Backbone.View.extend({ initialize: function(opts) { this.vent = opts.vent; this.locationBar = new HAL.Views.LocationBar({ vent: this.vent }); this.requestHeadersView = new HAL.Views.RequestHeaders({ vent: this.vent }); }, className: 'navigation', render: function() { this.$el.empty(); this.locationBar.render(); this.requestHeadersView.render(); this.$el.append(this.locationBar.el); this.$el.append(this.requestHeadersView.el); } });
Version data entries
215 entries across 215 versions & 1 rubygems