Ran translations and minor fix to filter url.
This commit is contained in:
parent
bc0550a791
commit
4a6703b63a
|
@ -1,9 +1,9 @@
|
||||||
<html><head></head><body><div>[[[SERVERNAME]]] - "[[[DEVICENAME]]]" Help Request</div>
|
<html><head></head><body><div>[[[SERVERNAME]]] - "[[[DEVICENAME]]]" Solicitud de ayuda</div>
|
||||||
<div style="font-family:Arial,Helvetica,sans-serif">
|
<div style="font-family:Arial,Helvetica,sans-serif">
|
||||||
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
|
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
|
||||||
<tbody><tr>
|
<tbody><tr>
|
||||||
<td>
|
<td>
|
||||||
<b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Help Request</b>
|
<b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Solicitud de ayuda</b>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody></table>
|
</tbody></table>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[[[SERVERNAME]]] - Device Help Request
|
[[[SERVERNAME]]] - Solicitud de ayuda del dispositivo
|
||||||
Device "[[[DEVICENAME]]]" requested assistance.
|
Device "[[[DEVICENAME]]]" requested assistance.
|
||||||
|
|
||||||
User: "[[[HELPUSERNAME]]]"
|
User: "[[[HELPUSERNAME]]]"
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -5024,20 +5024,20 @@
|
||||||
function onMultiDesktopStateChange(desk, state) { try { QH('skvmid_' + desk.shortid, ["Disconnected", "Connecting...", "Setup...", '', ''][state]); } catch (ex) {} }
|
function onMultiDesktopStateChange(desk, state) { try { QH('skvmid_' + desk.shortid, ["Disconnected", "Connecting...", "Setup...", '', ''][state]); } catch (ex) {} }
|
||||||
function onDeviceSearchChanged(e) {
|
function onDeviceSearchChanged(e) {
|
||||||
var url = new URL(window.location.href);
|
var url = new URL(window.location.href);
|
||||||
if (e != null) {
|
if ((e != null) && (e.target.value != '')) {
|
||||||
if (e.target.id == 'SearchInput') {
|
if (e.target.id == 'SearchInput') {
|
||||||
Q('KvmSearchInput').value = Q('SearchInput').value;
|
Q('KvmSearchInput').value = Q('SearchInput').value;
|
||||||
} else {
|
} else {
|
||||||
Q('SearchInput').value = Q('KvmSearchInput').value;
|
Q('SearchInput').value = Q('KvmSearchInput').value;
|
||||||
}
|
}
|
||||||
url.searchParams.set('filter', e.target.value);
|
url.searchParams.set('filter', e.target.value);
|
||||||
if(urlargs.filter){ urlargs.filter = e.target.value; }
|
if (urlargs.filter) { urlargs.filter = e.target.value; }
|
||||||
}else{
|
} else {
|
||||||
url.searchParams.delete('filter');
|
url.searchParams.delete('filter');
|
||||||
if(urlargs.filter){ delete urlargs.filter; }
|
if (urlargs.filter) { delete urlargs.filter; }
|
||||||
}
|
}
|
||||||
if (((features & 0x10000000) == 0) && (xxcurrentView > 0)) {
|
if (((features & 0x10000000) == 0) && (xxcurrentView > 0)) {
|
||||||
try { window.history.replaceState({}, document.title, decodeURIComponent(url.toString())); } catch(e) { }
|
try { window.history.replaceState({}, document.title, decodeURIComponent(url.toString())); } catch(ex) { }
|
||||||
}
|
}
|
||||||
mainUpdate(5);
|
mainUpdate(5);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue