How to define in the same DOM element a dynamic class and another static?
I tried this:
class$="{{clase}} my-static-class"
class$="[{{clase}}, 'my-static-class']"
class$="{{clase}}" class="my-static-class"
but doesn't work.
How to define in the same DOM element a dynamic class and another static?
I tried this:
class$="{{clase}} my-static-class"
class$="[{{clase}}, 'my-static-class']"
class$="{{clase}}" class="my-static-class"
but doesn't work.
String interpolation is not yet supported on Polymer 1.0. However, you can use a computed binding for this.
And use accordingly: