Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Kolosowski2004-06-02 17:33:02 +0000
committerKonrad Kolosowski2004-06-02 17:33:02 +0000
commit46f1027e8593d6cdb0ae1d499a4e7595971eb0d4 (patch)
tree28b828ae078dd1263490968fe52066bcf22064af /org.eclipse.help.webapp
parent465c6c9f631b8078281a05bf366bc2fc2da7f81b (diff)
downloadeclipse.platform.ua-46f1027e8593d6cdb0ae1d499a4e7595971eb0d4.tar.gz
eclipse.platform.ua-46f1027e8593d6cdb0ae1d499a4e7595971eb0d4.tar.xz
eclipse.platform.ua-46f1027e8593d6cdb0ae1d499a4e7595971eb0d4.zip
65032 Error when closing help
Diffstat (limited to 'org.eclipse.help.webapp')
-rw-r--r--org.eclipse.help.webapp/advanced/list.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/org.eclipse.help.webapp/advanced/list.js b/org.eclipse.help.webapp/advanced/list.js
index 88c7a5a45..798f9b819 100644
--- a/org.eclipse.help.webapp/advanced/list.js
+++ b/org.eclipse.help.webapp/advanced/list.js
@@ -350,8 +350,12 @@ function mouseClickHandler(e) {
function focusHandler(e)
{
- if (oldActive)
- oldActive.focus();
+ if (oldActive){
+ try{
+ oldActive.focus();
+ } catch (e) {
+ }
+ }
}
/**

Back to the top