projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35115b6
)
Catch focus failures if field is inactive.
author
Jan Schneider
<jan@horde.org>
Fri, 21 May 2010 10:23:53 +0000
(12:23 +0200)
committer
Jan Schneider
<jan@horde.org>
Fri, 21 May 2010 10:23:53 +0000
(12:23 +0200)
kronolith/js/kronolith.js
patch
|
blob
|
history
diff --git
a/kronolith/js/kronolith.js
b/kronolith/js/kronolith.js
index
0b525fa
..
5f1cde2
100644
(file)
--- a/
kronolith/js/kronolith.js
+++ b/
kronolith/js/kronolith.js
@@
-1242,7
+1242,9
@@
KronolithCore = {
field = tab.down('input');
}
if (field) {
- field.focus();
+ try {
+ field.focus();
+ } catch (e) {}
}
},