add new slider

This commit is contained in:
Luke Pulverenti 2015-06-26 23:27:38 -04:00
parent e33e5875cf
commit 09d4af3357
133 changed files with 9418 additions and 256 deletions

View file

@ -71,7 +71,7 @@
function onPlaybackStart(e, state) {
console.log('nowplaying event: ' + e.type);
Logger.log('nowplaying event: ' + e.type);
var player = this;
@ -82,7 +82,7 @@
function onPlaybackStopped(e, state) {
console.log('nowplaying event: ' + e.type);
Logger.log('nowplaying event: ' + e.type);
var player = this;
player.endPlayerUpdates();
@ -122,12 +122,12 @@
function onUpdateMetasSuccess() {
console.log('onUpdateMetasSuccess');
Logger.log('onUpdateMetasSuccess');
}
function onUpdateMetasFail(fail) {
console.log('onUpdateMetasFail: ' + fail);
Logger.log('onUpdateMetasFail: ' + fail);
}
function bindToPlayer(player) {
@ -140,7 +140,7 @@
return;
}
console.log('binding remotecontrols to MediaPlayer');
Logger.log('binding remotecontrols to MediaPlayer');
player.getPlayerState().done(function (state) {
@ -159,7 +159,7 @@
Dashboard.ready(function () {
console.log('binding remotecontrols to MediaController');
Logger.log('binding remotecontrols to MediaController');
$(MediaController).on('playerchange', function () {