This commit is contained in:
Paulus Schoutsen 2016-12-04 14:45:14 -08:00
parent a767765c5b
commit 2652823d35
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit d5c894436fcdf888d08a1a58d64faba57023fe53
Subproject commit 76f05f15fda7bcb15c43f9f529e3fdb8adc92d98

View File

@ -246,7 +246,7 @@ Polymer({
this.updatePlaybackPosition = this.updatePlaybackPosition.bind(this);
},
playerObjChanged: function (playerObj, oldPlayerObj) {
playerObjChanged: function (playerObj) {
var picture = playerObj.stateObj.attributes.entity_picture;
if (picture) {
this.$.cover.style.backgroundImage = 'url(' + picture + ')';
@ -266,7 +266,7 @@ Polymer({
}
},
updatePlaybackPosition: function (playerObj) {
updatePlaybackPosition: function () {
this.playbackPosition = this.playerObj.currentProgress;
},