diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-07 12:31:29 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-07 12:31:29 +0000 |
| commit | edbd4e632b5938354cb83a5fde9353e88fae72f5 (patch) | |
| tree | 4d000ae29d449a08f581abb3835a6dec8da990dd | |
| parent | ab595888cd573070de0c61d7db4ad1523df8c180 (diff) | |
- added check
git-svn-id: https://svn.roundcube.net/trunk@1267 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index 2b3c7a8f6..eceb1a9ec 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/program/js/list.js @@ -172,7 +172,7 @@ focus: function(e) for (var n=0; n<this.selection.length; n++) { id = this.selection[n]; - if (this.rows[id].obj) + if (this.rows[id] && this.rows[id].obj) { this.set_classname(this.rows[id].obj, 'selected', true); this.set_classname(this.rows[id].obj, 'unfocused', false); |
