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:
11
functions.js
11
functions.js
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user