diff options
author | alecpl <alec@alec.pl> | 2008-04-07 12:31:29 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-07 12:31:29 +0000 |
commit | e7886405d89806e79940976e6a8faad0374bb6be (patch) | |
tree | 08dc96669843b3b401bb1d7ef7418c062d47169f /program/js | |
parent | 2eb0326a5523a7e89e377a780186ebf0d95b8665 (diff) |
- added check
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index 2b3c7a8f6..eceb1a9ec 100644 --- a/program/js/list.js +++ b/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); |