mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 13:41:21 +00:00
Pass width/height to tunnel.
This commit is contained in:
@@ -145,7 +145,10 @@
|
|||||||
// all parameters should be preserved and passed on for
|
// all parameters should be preserved and passed on for
|
||||||
// the sake of authentication.
|
// the sake of authentication.
|
||||||
|
|
||||||
var connect_string = window.location.search.substring(1);
|
var connect_string =
|
||||||
|
window.location.search.substring(1)
|
||||||
|
+ "&width=" + window.innerWidth
|
||||||
|
+ "&height=" + window.innerHeight;
|
||||||
guac.connect(connect_string);
|
guac.connect(connect_string);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user