Skip to content

Instantly share code, notes, and snippets.

@psykidellic
Created August 20, 2012 18:39
Show Gist options
  • Select an option

  • Save psykidellic/3406539 to your computer and use it in GitHub Desktop.

Select an option

Save psykidellic/3406539 to your computer and use it in GitHub Desktop.
App.Views.AlbumView = Backbone.Layout.extend({
manage: true,
template: "#album-row",
className: "album-row",
events: {
"click i.icon-play": "playAlbum"
},
playAlbum: function (evt) {
console.log("Played");
alert("Ritesh");
}
});
>>>
%script#album-row{ :type => 'text/template' }
<a href = "albums/<%= id %>" class="name"><%= name %></a>
%p.details
%i.icon-play
%span asdsadasd
%span ›
%i.icon-like
%i.icon-comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment