Hi guys,
How do I always show the pin in ionic 2 (as opposed to the pin only showing when pressed)? In beta 11 what worked was to add the class ‘range-knob-pressed’ through ngClass. As of RC0 it doesn’t work anymore and I saw that now when you press the knob the class ‘range-pressed’ gets added to the ion-range. So I tried adding it through ngClass as follows:
<ion-range min="0" max="24" step="1" snaps="true" pin="true" [ngClass]="'range-pressed'">
However, this class gets overwritten by this line of code (I think) so it never makes it to the component.
What would be the proper way in RC0 to achieve this?
Thanks!