Skip to content

Commit

Permalink
Resolved bug causing QR code not to enlarge
Browse files Browse the repository at this point in the history
  • Loading branch information
jamieblomerus committed Dec 23, 2024
1 parent ad787e4 commit c5841f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jQuery(document).ready(function () {
});

jQuery('#bankid-qr-code-container').on('click', function (event) {
if (! jQuery(this).attr('enlargeable')) {
if (jQuery(this).attr('enlargeable') === undefined) {
return;
}
jQuery(this).toggleClass('full-screen');
Expand Down

0 comments on commit c5841f3

Please sign in to comment.