2014-02-21 21:25:33 +00:00
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
|
|
|
$('button').button();
|
|
|
|
|
|
|
|
$('#synopsis').iphoneStyle({
|
|
|
|
checkedLabel: 'YES',
|
|
|
|
uncheckedLabel: 'NO'
|
|
|
|
}).bind('change', function() {
|
|
|
|
if ($(this).attr('checked'))
|
2014-02-21 23:09:19 +00:00
|
|
|
$('.synopsis').show();
|
2014-02-21 21:25:33 +00:00
|
|
|
else
|
2014-02-21 23:09:19 +00:00
|
|
|
$('.synopsis').hide();
|
2014-02-21 21:25:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#listview').bind('click', function() {
|
|
|
|
var service = $(this).attr('service');
|
|
|
|
window.location.href = '/epg/xservice.jim?service=' + service;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('table.weekview').freezeHeader();
|
|
|
|
|
2014-02-23 22:22:07 +00:00
|
|
|
$('#jumptonow').bind('click', function() {
|
|
|
|
var hour = $(this).attr('hour');
|
|
|
|
$('body').scrollTo('#hour_' + hour);
|
|
|
|
});
|
|
|
|
|
2014-02-21 21:25:33 +00:00
|
|
|
});
|
|
|
|
|