Skip to content

Instantly share code, notes, and snippets.

@mdellavo
mdellavo / backbone-video.js
Created March 14, 2012 14:45
A Backbone app to render a youtube embed and list of thumbnails of videos responding to callbacks
var Video = Backbone.Model.extend({});
var VideoList = Backbone.Collection.extend({
model: Video,
url: '/videos'
});
var VideoPlayerView = Backbone.View.extend({
id: 'video-player',
className: 'video-player',