Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pepsonEL authored and perexg committed Oct 31, 2014
1 parent c083aee commit 96bc6d8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/webui/static/app/epg.js
Expand Up @@ -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',
Expand 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"
}));

Expand All @@ -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,
Expand Down

0 comments on commit 96bc6d8

Please sign in to comment.