Fix more info dialog opening on touch devices

This commit is contained in:
Paulus Schoutsen 2015-06-08 21:08:27 -07:00
parent 7fa7ef103f
commit 0b52b8c470
4 changed files with 1281 additions and 1216 deletions

View File

@ -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

View File

@ -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