From: Piotr Kuchciak Date: Fri, 31 Oct 2014 07:59:03 +0000 (+0100) Subject: EPG: small changes X-Git-Tag: v4.1~870 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96bc6d894be648fad3239b92c0ba37bbea0d6947;p=thirdparty%2Ftvheadend.git EPG: small changes -Add button PLAY ( for replace link PLAY, @perexg please write function for this button because i dont know how, and then remove link PLAY under SEARCH IMDB) -add tooltip for buttons -add icon for window Broadcast Details --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index af8a2ec72..f12df975e 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -154,6 +154,13 @@ tvheadend.epgDetails = function(event) { }); store.load(); + buttons.push(new Ext.Button({ + handler: playProgram, + iconCls: 'control_play', + tooltip: 'Play this program', + text: "Play program" + })); + var confcombo = new Ext.form.ComboBox({ store: store, triggerAction: 'all', @@ -170,11 +177,15 @@ tvheadend.epgDetails = function(event) { buttons.push(new Ext.Button({ handler: recordEvent, iconCls: 'rec', + tooltip: 'Record now this program', text: "Record program" })); buttons.push(new Ext.Button({ handler: recordSeries, iconCls: 'autoRec', + tooltip: 'Create an automatic recording entry for this program that will ' + + 'record all future programmes that matches ' + + 'the current query.', text: event.serieslinkId ? "Record series" : "Autorec" })); @@ -188,6 +199,7 @@ tvheadend.epgDetails = function(event) { var win = new Ext.Window({ title: 'Broadcast Details', + iconCls: 'broadcast_details', layout: 'fit', width: 600, height: 400,