ionic2-indexed-scroll
ionic2-indexed-scroll copied to clipboard
Position fixed error with the content scroll
Solution : add ion-fixed on the alphabet div :
` <div #IndexedMenu class="indexed-menu" ion-fixed> <div class="indexed-item" [class.activate]="item === index" *ngFor="let item of indexes;let i = index" (click)="selectIndex(i)"> {{ item }}
`👍