All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dependencies.halbrowser.js.hal.views.navigation.js Maven / Gradle / Ivy

The newest version!
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);
  }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy