mtr / angular-iscroll

AngularJS module that enables iScroll 5 functionality, wrapping it in an easy-to-use directive.
MIT License
74 stars 27 forks source link

scrollbar do not show #18

Closed nhuthuynh closed 8 years ago

nhuthuynh commented 8 years ago

I inspect the html of iscroll to find scrollbar element but it seem do not creating scrollbar. The question is how can i add scrollbar ?

George-Payne commented 8 years ago

You add scrollbars: true to the options. see here.

<div iscroll="{scrollbars: true}">

multiple options:

<div iscroll="{scrollbars: true, interactiveScrollbars: true}">

or you could configure your defaults. see here.

iScrollServiceProvider.configureDefaults({scrollbars: true, interactiveScrollbars: true});

See more options here:

http://iscrolljs.com/#scrollbars