On my HTML page, I have two different paper-card elements:
<paper-card done>
<paper-card>
In addition, there is a button:
<paper-icon-button icon="menu" on-tap="_show"></paper-icon-button>
I am trying to utilize the _show
function to toggle the view state of <paper-card done>
by changing its display style from none
to block
. How can I achieve this using Polymer? Thanks.