Removed alert() statement that should never trigger.

git-svn-id: https://shellinabox.googlecode.com/svn/trunk@78 0da03de8-d603-11dd-86c2-0f8696b7b6f9
This commit is contained in:
zodiac 2009-03-17 17:54:04 +00:00
parent 97fff401a3
commit b008c44be2

View file

@ -179,14 +179,10 @@ ShellInABox.prototype.sendRequest = function(request) {
} }
} }
}(this); }(this);
try { if (this.session) {
if (this.session) { request.send(content);
request.send(content); } else {
} else { request.send();
request.send();
}
} catch (e) {
alert('' + e + '\n' + this.url + '\n' + content);
} }
}; };