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:
@@ -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) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user