mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 20:57:21 +00:00
Fix more info dialog opening on touch devices
This commit is contained in:
parent
7fa7ef103f
commit
0b52b8c470
@ -1,2 +1,2 @@
|
||||
""" DO NOT MODIFY. Auto-generated by build_frontend script """
|
||||
VERSION = "ed339673ca129a1a51dcc3975d0a492d"
|
||||
VERSION = "6b9ac5df0217decb6a939e04824a96ff"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -41,7 +41,11 @@
|
||||
},
|
||||
|
||||
cardTapped: function() {
|
||||
uiActions.showMoreInfoDialog(this.stateObj.entityId);
|
||||
// Debounce wrapper added as workaround for bug
|
||||
// https://github.com/PolymerElements/iron-overlay-behavior/issues/14
|
||||
this.debounce('show-more-info-dialog', function() {
|
||||
uiActions.showMoreInfoDialog(this.stateObj.entityId);
|
||||
}, 1);
|
||||
},
|
||||
});
|
||||
})();
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user