From eb082a82be609e7bc1b9fff28f34ec26a832b689 Mon Sep 17 00:00:00 2001 From: sb1066 Date: Sun, 30 Aug 2009 15:26:49 +0000 Subject: [PATCH] sort the channel tags by name --- src/webui/static/app/chconf.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/static/app/chconf.js b/src/webui/static/app/chconf.js index 26a9bc90..6c1442d6 100644 --- a/src/webui/static/app/chconf.js +++ b/src/webui/static/app/chconf.js @@ -13,6 +13,8 @@ tvheadend.channelTags = new Ext.data.JsonStore({ } }); +tvheadend.channelTags.setDefaultSort('name', 'ASC'); + tvheadend.comet.on('channeltags', function(m) { if(m.reload != null) tvheadend.channelTags.reload();