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:
Alejandro Gallardo Escobar 2016-06-09 16:58:32 +02:00
parent 552f83c9ba
commit 49d243b487
1 changed files with 2 additions and 2 deletions

View File

@ -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) {