1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-03 01:17:56 +03:00

Some characters cause troubles on some devices (tablets, mobiles, ..) so we have removed anything outside ASCII

This commit is contained in:
Adolfo Gómez 2013-11-11 00:12:39 +00:00
parent 2bda255c2a
commit 918259079a

View File

@ -774,7 +774,7 @@ GuacUI.Client.attach = function(guac) {
blob.oncomplete = function() {
download.ondownload = function() {
saveAs(blob.getBlob(), blob.name);
saveAs(blob.getBlob(), blob.name.replace(/[\u0080-\uffff]/g, "_").replace(/\s/g, "_"));
};
download.complete();