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

scrollable feedlist (iframe)

This commit is contained in:
Andrew Dolgov
2005-09-07 04:53:29 +01:00
parent 6de17d5251
commit 1a66d16e46
8 changed files with 182 additions and 168 deletions

View File

@@ -223,8 +223,11 @@ function getCookie(name) {
return unescape(dc.substring(begin + prefix.length, end));
}
function disableContainerChildren(id, disable) {
var container = document.getElementById(id);
function disableContainerChildren(id, disable, doc) {
if (!doc) doc = document;
var container = doc.getElementById(id);
for (var i = 0; i < container.childNodes.length; i++) {
var child = container.childNodes[i];
@@ -244,3 +247,4 @@ function disableContainerChildren(id, disable) {
}