From 4e2f4dff31d1d72898043bd3560cb3f3ff8ba46f Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 29 Oct 2012 09:20:21 -0700 Subject: [PATCH] Remove old mimetype events. --- .../src/main/resources/guacamole.js | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/guacamole-common-js/src/main/resources/guacamole.js b/guacamole-common-js/src/main/resources/guacamole.js index 9f9fbf3ad..c0a605cdc 100644 --- a/guacamole-common-js/src/main/resources/guacamole.js +++ b/guacamole-common-js/src/main/resources/guacamole.js @@ -323,36 +323,6 @@ Guacamole.Client = function(tunnel) { return bounds; }; - /** - * Sends a supported audio mimetype. - * - * @param {String} mimetype The supported mimetype to send. - */ - this.sendAudioMimetype = function(mimetype) { - - // Do not send requests if not connected - if (!isConnected()) - return; - - tunnel.sendMessage("audio", mimetype); - - }; - - /** - * Sends a supported video mimetype. - * - * @param {String} mimetype The supported mimetype to send. - */ - this.sendVideoMimetype = function(mimetype) { - - // Do not send requests if not connected - if (!isConnected()) - return; - - tunnel.sendMessage("video", mimetype); - - }; - /** * Sends the current size of the screen. *