update views and remove additional cruft

This commit is contained in:
Michael Q Larson
2014-11-01 18:07:59 -07:00
parent 943350bdad
commit ff5f12cda8
6 changed files with 70 additions and 45 deletions

View File

@@ -1,2 +1,13 @@
$(document).ready(function() {
$('.start-challenge').on("click", function() {
$(this).addClass('animated zoomOut');
$('.completed-challenge').removeClass('hidden-element').addClass('animated zoomIn delay-1');
$('.skip-challenge').removeClass('hidden-element').addClass('animated zoomIn delay-1');
});
$('.completed-challenge').on("click", function() {
$('#complete-dialog').modal('show');
});
$('.skip-challenge').on("click", function() {
$('#skip-dialog').modal('show');
});
});