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:
@@ -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();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user