Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Created September 22, 2011 17:16
Show Gist options
  • Save chriscoyier/1235383 to your computer and use it in GitHub Desktop.
Save chriscoyier/1235383 to your computer and use it in GitHub Desktop.
(function() {
var fluidParent = $("#juice > .inside > article"),
newWidth, newHeight;
function resizeVideo() {
newWidth = fluidParent.width();
sublimevideo.resize('the-video', newWidth, newWidth/1.78125);
};
$(window).resize(function() {
resizeVideo();
});
sublimevideo.ready(function(){
resizeVideo();
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment