Guest User

Untitled

a guest
Jul 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. NotesView = Backbone.View.extend({
  2.     //...
  3.     render: function() {
  4.         var variables = { label: "hello" };
  5.         var template = Mustache.render( $('#template').html(), variables );
  6.         this.$el.html( template );
  7.     },
  8.     //...
  9.  });
Add Comment
Please, Sign In to add comment