mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:25:55 +00:00
big interface overhaul, new logo
This commit is contained in:
20
functions.js
20
functions.js
@@ -124,10 +124,18 @@ function hotkey_handler(e) {
|
||||
|
||||
}
|
||||
|
||||
function cleanSelected(element) {
|
||||
function cleanSelectedList(element) {
|
||||
var content = document.getElementById(element);
|
||||
|
||||
var rows = new Array();
|
||||
for (i = 0; i < content.childNodes.length; i++) {
|
||||
content.childNodes[i].className = content.childNodes[i].className.replace("Selected", "");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
function cleanSelected(element) {
|
||||
var content = document.getElementById(element);
|
||||
|
||||
for (i = 0; i < content.rows.length; i++) {
|
||||
content.rows[i].className = content.rows[i].className.replace("Selected", "");
|
||||
@@ -247,4 +255,12 @@ function disableContainerChildren(id, disable, doc) {
|
||||
|
||||
}
|
||||
|
||||
function gotoPreferences() {
|
||||
document.location.href = "prefs.php";
|
||||
}
|
||||
|
||||
function gotoMain() {
|
||||
document.location.href = "tt-rss.php";
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user