From 7b95777d99fe93a8adc305fe7579e6783379aae5 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Mon, 8 Aug 2016 20:34:03 -0700 Subject: [PATCH] Add a few things missed last commit --- src/utilities.js | 5 ++++- www/js/util.js | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/utilities.js b/src/utilities.js index 3e156a9b..268f553d 100644 --- a/src/utilities.js +++ b/src/utilities.js @@ -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; diff --git a/www/js/util.js b/www/js/util.js index e9ef5fff..c4f14106 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -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 "#"; }