1
0
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:
Andrew Dolgov
2005-09-07 08:19:14 +01:00
parent 94f6fd94e5
commit e828e31e83
14 changed files with 450 additions and 355 deletions

View File

@@ -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";
}