QUOTE(Calain @ Jan 13 2006, 08:21)
Just one question:
What is the meaning of "deep" in the context?
Could not find, where it is used.
[right][snapback]8283[/snapback][/right]
Good question calain !
I had the same problems with that translation.
I found the source where you can see what this feature make ("if (frameLevel > 1) frameFilter.label =... "):
CODE
// iframe depth-counter
var topmostFrame = target.ownerDocument.defaultView.frameElement;
if (topmostFrame)
if (topmostFrame.nodeName.toLowerCase() == "iframe") {
frameLevel = 1; // depth-counter -- begins with current
while (topmostFrame.ownerDocument.defaultView.frameElement) {
topmostFrame = topmostFrame.ownerDocument.defaultView.frameElement;
if (topmostFrame.tagName.toLowerCase() == "iframe")
frameLevel++; // only for iframes, increment the counter -- we crawl up all frames
}
if (frameLevel > 1) frameFilter.label = "Adblock iFrame (" + frameLevel + " deep)";
else frameFilter.label = "Adblock iFrame";
}
I hope this could be useful
Ich wünche dir eine gute übersetzung !