Added the function "openURLTagWindow"

This commit is contained in:
Alejandro Gallardo Escobar 2014-10-20 13:11:38 +02:00
parent 7da6763197
commit 4cbc91d24e
1 changed files with 4 additions and 0 deletions

View File

@ -907,4 +907,8 @@ function show_dialog_qrcode(dialog, text, where, width, height) {
paint_qrcode(text, where, 256, 256)
$(dialog).dialog( "open" );
}
function openURLTagWindow(url) {
window.open(url, '','width=300, height=300, toolbar=no, location=no, directories=no, status=no, menubar=no');
}