]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Webui: Align epg duration filter with autorec grid values 481/head
authorIan <ian@sproink.co.uk>
Sun, 14 Sep 2014 08:11:28 +0000 (09:11 +0100)
committerIan <ian@sproink.co.uk>
Sun, 14 Sep 2014 08:11:28 +0000 (09:11 +0100)
src/webui/static/app/epg.js

index b7d5e9207d086e48c9d743a437ed2652e101defb..d0ed1546a630aba4342ef8c988b86b2cf13177d3 100644 (file)
@@ -59,11 +59,11 @@ tvheadend.DurationStore = new Ext.data.SimpleStore({
     idIndex: 0,
     fields: ['identifier','label','minvalue','maxvalue'],
     data: [['-1', '(Clear filter)',"",""],
-           ['1','00:00:01 - 00:15:00',1, 900],
-           ['2','00:15:01 - 00:30:00', 901, 1800],
-           ['3','00:30:01 - 01:30:00', 1801, 5400],
-           ['4','01:30:01 - 03:00:00', 5401, 10800],
-           ['5','03:00:01 - No maximum', 10801, 9999999]]
+           ['1','00:00:00 - 00:15:00', 0, 900],
+           ['2','00:15:00 - 00:30:00', 900, 1800],
+           ['3','00:30:00 - 01:30:00', 1800, 5400],
+           ['4','01:30:00 - 03:00:00', 5400, 10800],
+           ['5','03:00:00 - No maximum', 10800, 9999999]]
 });
 
 // Function to convert numeric duration to corresponding label string