Add support for tracker type (private/public/semi-private)

This commit is contained in:
kaso17
2017-01-27 16:57:32 +01:00
parent 098caee075
commit 50c3a5fb3a
151 changed files with 403 additions and 2 deletions

View File

@@ -66,6 +66,19 @@ function reloadIndexers() {
else
item.state = "success";
if (item.type == "public") {
item.type_icon_content = "🔓\uFE0E";
}
else if (item.type == "private") {
item.type_icon_content = "🔐\uFE0E";
}
else if (item.type == "semi-private") {
item.type_icon_content = "🔒\uFE0E";
}
else {
item.type_icon_content = "";
}
var main_cats_list = [];
for (var catID in item.caps) {
var cat = item.caps[catID];