This commit is contained in:
Paulus Schoutsen 2015-08-30 15:44:20 -07:00
parent 5067d04009
commit 5a103bf5e9
2 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,9 @@ export default new Polymer({
},
entityTapped(ev) {
if (ev.target.classList.contains('paper-toggle-button')) {
return;
}
ev.stopPropagation();
const entityId = ev.model.item.entityId;
this.async(() => moreInfoActions.selectEntity(entityId), 1);

View File

@ -33,6 +33,7 @@
}
paper-icon-item {
padding-left: 24px;
cursor: pointer;
font-weight: 500;
}