Asked By: Anonymous
In this tag:
<paper-item noink="true"> Some text </paper-item>
How does noink="true"
affect the behavior of the paper-item
tag?
Solution
Answered By: Anonymous
The noink
attribute in Polymer disables the ripple effect that you see on click.
This isn’t unique to <paper-items>
, but rather can be applied to any Polymer elements:
<paper-button noink>No Ink<paper-button>
<paper-tabs noink>No Ink<paper-tabs>
Note that the ="true"
is not necessary; simply providing the attribute will make it true by default.