diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2009-12-20 14:46:30 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2009-12-20 14:46:30 +0000 |
| commit | 6d3e88d05d3d104bec6f882d2a0205cd4d6f2ae7 (patch) | |
| tree | 23b8cfa57c06ead48a897d0f4c92ceab570bc44f /skins/jason/program.js | |
| parent | 06246360d87faa53f943c039b31d9d37ae325c3d (diff) | |
| download | xxv-6d3e88d05d3d104bec6f882d2a0205cd4d6f2ae7.tar.gz xxv-6d3e88d05d3d104bec6f882d2a0205cd4d6f2ae7.tar.bz2 | |
* Chronicle: store also epg description (change db layout version-32)
* Chronicle: ignore cutted recordings
* jason: show description from recording stored by chronicle
Diffstat (limited to 'skins/jason/program.js')
| -rw-r--r-- | skins/jason/program.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/skins/jason/program.js b/skins/jason/program.js index 294c009..8f44883 100644 --- a/skins/jason/program.js +++ b/skins/jason/program.js @@ -231,8 +231,7 @@ Ext.extend(Ext.xxv.programGrid, Ext.grid.GridPanel, { this.viewer.gridNow.EditTimer(record, this.store); } ,select : function(sm, index, record){ - this.preview.select(sm, index, record, - this.filter.getValue()); + this.preview.select(record, this.filter.getValue()); }
}); @@ -273,7 +272,7 @@ Ext.xxv.programPreview = function(viewer) { Ext.extend(Ext.xxv.programPreview, Ext.Panel, { - select : function(sm, index, record, lookup){ + select : function(record, lookup){ if(this.body)
XXV.getTemplate().overwrite(this.body, record.data); if(lookup) |
