diff --git a/src/more-infos/more-info-media_player.js b/src/more-infos/more-info-media_player.js index 58e26370a4..4265d3878f 100644 --- a/src/more-infos/more-info-media_player.js +++ b/src/more-infos/more-info-media_player.js @@ -80,7 +80,6 @@ export default new Polymer({ attached() { // This is required to bind a mousedown event in all browsers const _this = this; - window.test = this.$.volumeUp; this.$.volumeUp.onmousedown = function onVolumeUpDown() {_this.handleVolumeUp();}; this.$.volumeUp.ontouchstart = function onVolumeUpDown() {_this.handleVolumeUp();}; this.$.volumeDown.onmousedown = function onVolumeDownDown() {_this.handleVolumeDown();};