Guest User

Untitled

a guest
Jan 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <dt><i class="icon-<%= icon %>"></i><%= title %></dt>
  2. <dd><%= content %> </dd>
  3.  
  4. var Definitions = Backbone.View.extend({
  5. tagName: 'dl',
  6.  
  7. initialize: function () {
  8. this.collection.on('change', this.render, this);
  9. }
  10.  
  11. render: function () {
  12. this.$el.html( <output from template that loops over all definitions> );
  13. }
  14. });
Add Comment
Please, Sign In to add comment