Add error for status code of 0.
authorMichael Jumper <zhangmaike@users.sourceforge.net>
Mon, 26 Mar 2012 00:56:33 +0000 (17:56 -0700)
committerMichael Jumper <zhangmaike@users.sourceforge.net>
Mon, 26 Mar 2012 00:56:33 +0000 (17:56 -0700)
src/main/resources/tunnel.js

index a06c2b4..39709d8 100644 (file)
@@ -208,6 +208,7 @@ Guacamole.HTTPTunnel = function(tunnelURL) {
         var status = xmlhttprequest.status;
 
         // Special cases
+        if (status == 0)   return "Disconnected";
         if (status == 200) return "Success";
         if (status == 403) return "Unauthorized";
         if (status == 404) return "Connection does not exist";