Removed debugging line

Removed a debugging line form media_player more-info code.
This commit is contained in:
Ryan Kraus 2016-01-11 00:54:50 -05:00
parent 0c7f6f685c
commit 5a27273506

View File

@ -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();};