I tried various approches to get links in paper-items to work in most browsers.
Links open in Chrome Desktop and Firefox Desktop, but not in Chrome Android:
<paper-item icon="social:post-github" label="Github">
</paper-item>
(that's how one should do it according to the
docu)
Links open in Chrome Desktop, Chrome Android and Firefox Desktop, but the paper-items look empty in Firefox Desktop (
example):
<paper-item icon="social:post-github" label="Github"></paper-item>
</a>
Links open in Chrome Desktop and Chrome Android once, but twice in Firefox Desktop:
<paper-item onclick="this.getElementsByName('a')[0].click()" icon="social:post-github" label="Github">
</paper-item>
Is there any good workaround to get in working in major browsers?