mirror of https://github.com/calzoneman/sync.git
Add a few things missed last commit
This commit is contained in:
parent
d06c614ccc
commit
7b95777d99
|
@ -119,7 +119,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return result.join(":");
|
return result.join(":");
|
||||||
},
|
},
|
||||||
|
|
||||||
root.formatTime = function (sec) {
|
root.formatTime = function (sec) {
|
||||||
|
@ -242,6 +242,8 @@
|
||||||
return id;
|
return id;
|
||||||
case "hb":
|
case "hb":
|
||||||
return "http://hitbox.tv/" + id;
|
return "http://hitbox.tv/" + id;
|
||||||
|
case "hl":
|
||||||
|
return id;
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
@ -257,6 +259,7 @@
|
||||||
case "im":
|
case "im":
|
||||||
case "jw":
|
case "jw":
|
||||||
case "hb":
|
case "hb":
|
||||||
|
case "hl":
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -52,6 +52,8 @@ function formatURL(data) {
|
||||||
return data.id;
|
return data.id;
|
||||||
case "hb":
|
case "hb":
|
||||||
return "http://hitbox.tv/" + data.id;
|
return "http://hitbox.tv/" + data.id;
|
||||||
|
case "hl":
|
||||||
|
return data.id;
|
||||||
default:
|
default:
|
||||||
return "#";
|
return "#";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue