updated nuget

This commit is contained in:
Luke Pulverenti 2013-11-25 16:53:06 -05:00
parent 599320043f
commit c8244de802

View File

@ -29,6 +29,7 @@
html += '<tr>';
html += '<th>&nbsp;</th>';
html += '<th>Date</th>';
html += '<th>Start</th>';
html += '<th>End</th>';
@ -43,6 +44,16 @@
html += '<tr>';
html += '<td>';
if (program.recordingId) {
html += '<button type="button" data-icon="delete" data-inline="true" data-mini="true" data-iconpos="notext">Cancel</button>';
} else {
html += '<button type="button" data-icon="star" data-inline="true" data-mini="true" data-theme="b" data-iconpos="notext">Record</button>';
}
html += '</td>';
var startDate = program.StartDate;
try {
@ -67,7 +78,7 @@
html += '</table></div>';
$('#programList', page).html(html);
$('#programList', page).html(html).trigger('create');
}
function loadPrograms(page) {