Change the IF statements to a switch

This is to make it easier to add new responses in the future instead of having many different IF statements.
This commit is contained in:
alopexc0de 2014-08-29 11:22:37 -04:00
parent e395ac49e8
commit fb5ccdce5e
No known key found for this signature in database
GPG Key ID: 48E847F18074C953
1 changed files with 14 additions and 9 deletions

View File

@ -47,15 +47,20 @@ function shortenURL(url){ // Creates a short url and copies it to clipboard
if(testURL(url)){
sendAPIRequest("shorten&url=" + url, function(req){
var res = req.responseText.trim();
if(res == "dead"){
showAlert("Apparently the link is dead...");
}else if(res == "db"){
showAlert("I got a database error!");
}else if(res == "Error"){
showAlert("General Error.");
}else{
copyToClipboard("http://lob.li/" + res);
showAlert("Link shortened. Short link copied to clipboard!");
switch(res){
case "dead":
showAlert("Apparently the link is dead...");
break;
case "db":
showAlert("I got a database error!");
break;
case "Error":
showAlert("General Error.");
break;
default:
copyToClipboard("http://lob.li/" + res);
showAlert("Link shortened. Short link copied to clipboard!");
break;
}
});
}