sync updates
This commit is contained in:
parent
3105920c99
commit
ce737e9d7b
6 changed files with 72 additions and 5 deletions
|
@ -833,7 +833,7 @@
|
|||
|
||||
if (item.Type == 'Series' || item.Type == 'Season' || item.Type == 'BoxSet' || item.MediaType == 'Video') {
|
||||
if (item.UserData.UnplayedItemCount) {
|
||||
html += '<span class="ui-li-count">' + item.UserData.UnplayedItemCount + '</span>';
|
||||
//html += '<span class="ui-li-count">' + item.UserData.UnplayedItemCount + '</span>';
|
||||
} else if (item.UserData.Played && item.Type != 'TvChannel') {
|
||||
html += '<div class="playedIndicator"><div class="ui-icon-check ui-btn-icon-notext"></div></div>';
|
||||
}
|
||||
|
|
22
dashboard-ui/scripts/wizardagreement.js
Normal file
22
dashboard-ui/scripts/wizardagreement.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
(function (window, $) {
|
||||
|
||||
function onSubmit(page) {
|
||||
|
||||
if ($('#chkAccept', page).checked()) {
|
||||
Dashboard.navigate('wizardfinish.html');
|
||||
}
|
||||
}
|
||||
|
||||
window.WizardAgreementPage = {
|
||||
|
||||
onSubmit: function () {
|
||||
|
||||
var page = $(this).parents('.page');
|
||||
|
||||
onSubmit(page);
|
||||
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
})(window, jQuery);
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
$('#btnNextPage', page).on('click', function () {
|
||||
|
||||
Dashboard.navigate('wizardfinish.html');
|
||||
Dashboard.navigate('wizardagreement.html');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
Dashboard.navigate('wizardservice.html');
|
||||
|
||||
} else {
|
||||
Dashboard.navigate('wizardfinish.html');
|
||||
Dashboard.navigate('wizardagreement.html');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue