Updated QR code display based on requests from mbarbier. Default display is a small icon that reveals the full QR code, but the full code can be rendered by setting the display value to "full".

This commit is contained in:
cappadona 2011-06-24 09:50:49 +00:00
parent a285edcec0
commit eda748901f
4 changed files with 54 additions and 6 deletions

View file

@ -41,4 +41,10 @@ $(document).ready(function(){
});
});
// Reveal vCard QR code when QR icon is clicked
$('#qrIcon, .qrCloseLink').click(function() {
$('#qrCodeImage').toggleClass('hide');
// event.preventDefault();
return false;
});
});