Skip to content

Instantly share code, notes, and snippets.

@John2496
Created December 4, 2012 15:53
Show Gist options
  • Select an option

  • Save John2496/4205399 to your computer and use it in GitHub Desktop.

Select an option

Save John2496/4205399 to your computer and use it in GitHub Desktop.
<!-- Bind event listener after call to App.init() (line #627 of index.html) -->
<script>
$content = $('.content');
$dialogStart = $('.dialog.start');
$dialogCreateANewCrew = $('.dialog.create-a-new-crew');
$dialogPickYourCrew = $('.dialog.pick-your-crew');
$dialogPickFriend = $('.dialog.pick-friend');
$dialogMeetYourCrew = $('.dialog.meet-your-crew');
$widgetContainers = $('.widget-container');
$widgetDecorate = $('.widget-decorate');
$contentSection = $content.find('.section');
// $widgetContainers.show();
// $dialogStart.hide();
App.init();
// Watch shows clips!
$('a.button.watch-show-clips').unbind('click').click(function(e) {
alert("Watch Shows Click!");
console.log(e);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment