Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahuggins/fdb93148e2ce161b9457 to your computer and use it in GitHub Desktop.
Save ahuggins/fdb93148e2ce161b9457 to your computer and use it in GitHub Desktop.
Add Movie Mode to PHP Roundtable
$('.episode-list > div.col-sm-5').attr('id', 'episode-notes').addClass('col-sm-12');
$('.episode-list > div.col-sm-7').attr('id', 'episode-video').addClass('col-sm-12');
$('.episode-list > div').css({transition: 'width 1s'});
$('#episode-video').append('<p style="text-align: center;margin-top: 10px;"><a href="#" id="movie-mode"><i class="fa fa-film"></i> Movie Mode</a></p>');
$('#movie-mode').click( function() {
$('#episode-notes').toggleClass('col-sm-5');
$('#episode-video').toggleClass('col-sm-7');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment