diff --git a/src/components/ha-color-picker.js b/src/components/ha-color-picker.js index 9ca85da3fc..7fc5f156c2 100644 --- a/src/components/ha-color-picker.js +++ b/src/components/ha-color-picker.js @@ -43,7 +43,6 @@ export default new Polymer({ 'mouseup': 'onMouseUp', 'touchstart': 'onTouchStart', 'touchend': 'onTouchEnd', - 'tap': 'onTap', }, onMouseDown(ev) { @@ -64,10 +63,6 @@ export default new Polymer({ this.removeEventListener('touchmove', this.onTouchMove); }, - onTap(ev) { - ev.stopPropagation(); - }, - onTouchMove(ev) { const touch = ev.touches[0]; this.onColorSelect(ev, {x: touch.clientX, y: touch.clientY}); diff --git a/src/more-infos/more-info-light.html b/src/more-infos/more-info-light.html index 1af4c7c7b6..9ec6fb4bc1 100644 --- a/src/more-infos/more-info-light.html +++ b/src/more-infos/more-info-light.html @@ -54,7 +54,6 @@ -