projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82ed189
)
Don't highlight header row
author
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 31 Mar 2010 22:41:20 +0000
(16:41 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 31 Mar 2010 22:41:33 +0000
(16:41 -0600)
imp/js/mailbox.js
patch
|
blob
|
history
diff --git
a/imp/js/mailbox.js
b/imp/js/mailbox.js
index
97d9bdb
..
eecc268
100644
(file)
--- a/
imp/js/mailbox.js
+++ b/
imp/js/mailbox.js
@@
-16,7
+16,9
@@
var ImpMailbox = {
selectRow: function(id, select)
{
- [ id ].invoke(select ? 'addClassName' : 'removeClassName', 'selectedRow');
+ if (id.readAttribute('id')) {
+ [ id ].invoke(select ? 'addClassName' : 'removeClassName', 'selectedRow');
+ }
id.down('INPUT.checkbox').setValue(select);
},