1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:35:55 +00:00

feed errors box in feed editor is collapsed by default

This commit is contained in:
Andrew Dolgov
2005-11-29 10:50:18 +01:00
parent a88c1f3644
commit 36aab70f08
3 changed files with 19 additions and 2 deletions

View File

@@ -672,3 +672,14 @@ function getRelativeFeedId(list, id, direction) {
}
}
}
function showBlockElement(id) {
var elem = document.getElementById(id);
if (elem) {
elem.style.display = "block";
} else {
alert("[showBlockElement] can't find element with id " + id);
}
}