Fixed the error which prevented the opening of the QR dialog on the public console section
This commit is contained in:
parent
4434e8f839
commit
4cd2e7750b
|
@ -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