Fixed the error which prevented the opening of the QR dialog on the public console section
(cherry picked from commit 4cd2e7750b
)
This commit is contained in:
parent
552f83c9ba
commit
49d243b487
|
@ -990,9 +990,9 @@ function show_dialog_qrcode(dialog, text, where, width, height) {
|
|||
}
|
||||
}
|
||||
|
||||
paint_qrcode(text, where, 256, 256)
|
||||
paint_qrcode(text, where, 256, 256);
|
||||
|
||||
$(dialog).dialog( "open" );
|
||||
$(dialog).dialog({ autoOpen: false, modal: true }).dialog('open');
|
||||
}
|
||||
|
||||
function openURLTagWindow(url) {
|
||||
|
|
Loading…
Reference in New Issue