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

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

The newest version!
HAL.Views.Properties = Backbone.View.extend({
  initialize: function(opts) {
    this.vent = opts.vent;
    _.bindAll(this, 'render');
  },

  className: 'properties',

  render: function(props) {
    this.$el.html(this.template({ properties: props }));
  },

  template: _.template($('#properties-template').html())
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy