Add a few things missed last commit

This commit is contained in:
calzoneman 2016-08-08 20:34:03 -07:00
parent d06c614ccc
commit 7b95777d99
2 changed files with 6 additions and 1 deletions

View file

@ -119,7 +119,7 @@
});
}
return result.join(":");
return result.join(":");
},
root.formatTime = function (sec) {
@ -242,6 +242,8 @@
return id;
case "hb":
return "http://hitbox.tv/" + id;
case "hl":
return id;
default:
return "";
}
@ -257,6 +259,7 @@
case "im":
case "jw":
case "hb":
case "hl":
return true;
default:
return false;

View file

@ -52,6 +52,8 @@ function formatURL(data) {
return data.id;
case "hb":
return "http://hitbox.tv/" + data.id;
case "hl":
return data.id;
default:
return "#";
}