]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
webui: Fix mistake in previous update to iptv.js
authorAdam Sutton <dev@adamsutton.me.uk>
Sat, 17 Nov 2012 12:43:41 +0000 (12:43 +0000)
committerAdam Sutton <dev@adamsutton.me.uk>
Sat, 17 Nov 2012 12:44:35 +0000 (12:44 +0000)
src/webui/static/app/iptv.js

index 4cd4f35e9ba0a6b1512cf2ad31544217a53e9d5f..e1c9a41b94b58bde5a34bb0f1d4b949d67803838 100644 (file)
@@ -113,10 +113,10 @@ tvheadend.iptv = function(adapterId) {
                                editable : false,
                                mode : 'local',
                                triggerAction : 'all',
-                               store : tvheadend.servicetypeStore
+                               store : servicetypeStore
                        }),
                        renderer : function(value, metadata, record, row, col, store) {
-                               var val = value ? tvheadend.servicetypeStore.getById(value) : null;
+                               var val = value ? servicetypeStore.getById(value) : null;
                                return val ? val.get('str')
                                        : '<span class="tvh-grid-unset">Unset</span>';
                        }