From 36aab70f080d7ab50a754b522e62a2f03ccc167a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 29 Nov 2005 10:50:18 +0100 Subject: feed errors box in feed editor is collapsed by default --- functions.js | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'functions.js') diff --git a/functions.js b/functions.js index c696ae3e8..694ade06a 100644 --- a/functions.js +++ b/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); + } +} + -- cgit v1.2.3