Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-09-12 22:28:52 +0000
committerChris Goldthorpe2007-09-12 22:28:52 +0000
commitc64eae409346bed65af3af6656da15ede42176b6 (patch)
tree7673abe29c61e99ece1f1f6c9dda955e0d536d35
parente7bf1d61970515e2883aebeebe7a5b2d1e9e935b (diff)
downloadeclipse.platform.ua-c64eae409346bed65af3af6656da15ede42176b6.tar.gz
eclipse.platform.ua-c64eae409346bed65af3af6656da15ede42176b6.tar.xz
eclipse.platform.ua-c64eae409346bed65af3af6656da15ede42176b6.zip
Don't show warning for not in TOC when in autosynch mode.
-rw-r--r--org.eclipse.help.webapp/advanced/tocTree.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.webapp/advanced/tocTree.js b/org.eclipse.help.webapp/advanced/tocTree.js
index 8f38e882e..2ca7e7b3f 100644
--- a/org.eclipse.help.webapp/advanced/tocTree.js
+++ b/org.eclipse.help.webapp/advanced/tocTree.js
@@ -188,7 +188,7 @@ function showInToc(xml) {
var path = node.getAttribute("path");
var isShowing = openPath(selectedChild, path);
if (!isShowing) {
- makeNodeRequest("?expandPath=" + path);
+ makeNodeRequest("?expandPath=" + path + "&errorSuppress=true");
}
return;
}

Back to the top