+
diff --git a/src/components/entity/ha-entity-marker.js b/src/components/entity/ha-entity-marker.js
index 82440cc73e..9944f60833 100644
--- a/src/components/entity/ha-entity-marker.js
+++ b/src/components/entity/ha-entity-marker.js
@@ -40,7 +40,7 @@ export default new Polymer({
},
listeners: {
- 'click': 'badgeTap',
+ 'tap': 'badgeTap',
},
badgeTap(ev) {
diff --git a/src/components/ha-sidebar.html b/src/components/ha-sidebar.html
index d88730b08f..a8d23b91b0 100644
--- a/src/components/ha-sidebar.html
+++ b/src/components/ha-sidebar.html
@@ -69,30 +69,30 @@
Home Assistant
diff --git a/src/dialogs/ha-voice-command-dialog.js b/src/dialogs/ha-voice-command-dialog.js
index a86354fbd4..10c15d9bdc 100644
--- a/src/dialogs/ha-voice-command-dialog.js
+++ b/src/dialogs/ha-voice-command-dialog.js
@@ -45,13 +45,6 @@ export default new Polymer({
computed: 'computeShowListenInterface(isListening, isTransmitting)',
observer: 'showListenInterfaceChanged',
},
-
- _boundOnBackdropTap: {
- type: Function,
- value: function bindBackdropTap() {
- return this._onBackdropTap.bind(this);
- },
- },
},
computeShowListenInterface(isListening, isTransmitting) {
@@ -59,10 +52,7 @@ export default new Polymer({
},
dialogOpenChanged(newVal) {
- if (newVal) {
- this.$.dialog.backdropElement.addEventListener('click',
- this._boundOnBackdropTap);
- } else if (!newVal && this.isListening) {
+ if (!newVal && this.isListening) {
voiceActions.stop();
}
},
@@ -74,12 +64,4 @@ export default new Polymer({
this.dialogOpen = true;
}
},
-
- _onBackdropTap() {
- this.$.dialog.backdropElement.removeEventListener('click',
- this._boundOnBackdropTap);
- if (this.isListening) {
- voiceActions.stop();
- }
- },
});
diff --git a/src/layouts/login-form.js b/src/layouts/login-form.js
index a6981f175b..8672c21ede 100644
--- a/src/layouts/login-form.js
+++ b/src/layouts/login-form.js
@@ -48,7 +48,7 @@ export default new Polymer({
listeners: {
'keydown': 'passwordKeyDown',
- 'loginButton.click': 'validatePassword',
+ 'loginButton.tap': 'validatePassword',
},
observers: [
diff --git a/src/layouts/partial-dev-call-service.html b/src/layouts/partial-dev-call-service.html
index 3494f0ccdc..48d4f8002c 100644
--- a/src/layouts/partial-dev-call-service.html
+++ b/src/layouts/partial-dev-call-service.html
@@ -40,7 +40,7 @@
-
Call Service
+
Call Service