function updateQrCodeScreens() {
var qrCodeWrapper = jQuery(".scan-instructions-qrcode-wrapper");
var instructionsDetails = jQuery(".scan-instructions-details");
console.log("updating the QR screens");
if (qrCodeWrapper && jQuery(".scan-instructions-qrcode-wrapper").length) {
console.log("updating the QR screens wrapper");
// Move the QR code wrapper below the instructions details
qrCodeWrapper.detach().insertAfter(instructionsDetails);
// Center-align the QR code and its contents
qrCodeWrapper.css({
"text-align": "center",
"margin-top": "20px",
"margin-right": "auto",
"margin-left": "auto",
float: "none",
});
function updateQrCodeScreens() {
var qrCodeWrapper = jQuery(".scan-instructions-qrcode-wrapper");
var instructionsDetails = jQuery(".scan-instructions-details");
console.log("updating the QR screens");
if (qrCodeWrapper && jQuery(".scan-instructions-qrcode-wrapper").length) {
console.log("updating the QR screens wrapper");
// Move the QR code wrapper below the instructions details
qrCodeWrapper.detach().insertAfter(instructionsDetails);
// Center-align the QR code and its contents
qrCodeWrapper.css({
"text-align": "center",
"margin-top": "20px",
"margin-right": "auto",
"margin-left": "auto",
float: "none",
});