mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-02 23:09:10 -05:00
Started work on login token.
This commit is contained in:
parent
56ba656bd4
commit
fe3af51d40
@ -407,7 +407,10 @@ var CreateAgentRemoteDesktop = function (canvasid, scrolldiv) {
|
||||
|
||||
obj.SendStringUnicode = function (str) {
|
||||
if (obj.State != 3) return;
|
||||
for (var i = 0; i < str.length; i++) { obj.send(String.fromCharCode(0x00, obj.InputType.KEYUNICODE, 0x00, 0x07, 0) + ShortToStr(str.charCodeAt(i))); }
|
||||
for (var i = 0; i < str.length; i++) {
|
||||
obj.send(String.fromCharCode(0x00, obj.InputType.KEYUNICODE, 0x00, 0x07, 0) + ShortToStr(str.charCodeAt(i)));
|
||||
obj.send(String.fromCharCode(0x00, obj.InputType.KEYUNICODE, 0x00, 0x07, 1) + ShortToStr(str.charCodeAt(i)));
|
||||
}
|
||||
}
|
||||
|
||||
obj.SendKeyUnicode = function (action, val) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user