Send supported video mimetypes to server.

This commit is contained in:
Michael Jumper
2012-10-25 19:00:10 -07:00
parent 5f730f93df
commit 29f8707cd5

View File

@@ -167,6 +167,11 @@
connect_string += "&audio=" + mimetype;
});
// Add video mimetypes to connect_string
GuacamoleUI.supportedVideo.forEach(function(mimetype) {
connect_string += "&video=" + mimetype;
});
guac.connect(connect_string);
}