Added ability to flip card back over to review question.

Added button to bookmark the current card, since dormant pages will refresh on iPad, losing the card you were working on.
This commit is contained in:
John Washam
2016-07-24 17:30:39 -07:00
parent 18f0523591
commit c3c6f40635
3 changed files with 46 additions and 8 deletions

View File

@@ -2,8 +2,13 @@ $(document).ready(function(){
if ($('.memorizePanel').length != 0) {
$('.flipCard').click(function(){
$('.cardFront').hide();
$('.cardBack').show();
if ($('.cardFront').is(":visible") == true) {
$('.cardFront').hide();
$('.cardBack').show();
} else {
$('.cardFront').show();
$('.cardBack').hide();
}
});
}