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,15 +179,11 @@ ShellInABox.prototype.sendRequest = function(request) {
}
}
}(this);
try {
if (this.session) {
request.send(content);
} else {
request.send();
}
} catch (e) {
alert('' + e + '\n' + this.url + '\n' + content);
}
};
ShellInABox.prototype.onReadyStateChange = function(request) {