aquint / ion-alpha-scroll

Alphabetically indexed list with alpha scroll bar.
99 stars 35 forks source link

Want to show full alphabet #15

Open subhashisrouth opened 8 years ago

subhashisrouth commented 8 years ago

Hi, Thanks for wonderful works, however I noticed that not all alphabets are not showing, alternate alphabets are showing, but I want to show all alphabet A to Z. How to do that? Please Help me.

klammt commented 7 years ago

Hi, open the ion-alpha-scroll.js and change line 20 from: '<li ng-click="alphaScrollGoToList(\'index_{{letter}}\')" ng-repeat="letter in alphabet">{{$index%2 == 0 ? letter: "&bull;"}}</li>' to: '<li ng-click="alphaScrollGoToList(\'index_{{letter}}\')" ng-repeat="letter in alphabet">{{letter}}</li>'

This should remove the bullet-points.