projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06dba53
)
IE 6 hover fix for context menus.
author
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 6 Mar 2009 07:50:44 +0000
(
00:50
-0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 6 Mar 2009 07:52:06 +0000
(
00:52
-0700)
imp/js/src/DimpBase.js
patch
|
blob
|
history
diff --git
a/imp/js/src/DimpBase.js
b/imp/js/src/DimpBase.js
index
8ffb548
..
70b29b8
100644
(file)
--- a/
imp/js/src/DimpBase.js
+++ b/
imp/js/src/DimpBase.js
@@
-2359,6
+2359,12
@@
var DimpBase = {
$('dimpbarActions', 'serviceActions', 'applicationfolders', 'specialfolders', 'normalfolders').compact().invoke('select', 'LI').flatten().compact().each(function(e) {
e.observe('mouseover', e.addClassName.curry('over')).observe('mouseout', e.removeClassName.curry('over'));
});
+
+ /* These are links, but they have no href attribute. Hovering
+ * requires something in href on IE6. */
+ $$('.context A').each(function(e) {
+ e.writeAttribute('href', '');
+ });
}
},