angularjs hide vertical scrollbar for mobile devices -


i developing application using bootstrap , angular js.

i have left side dynamic navigation bar containing more data.(customer numbers)

my requirement is, don't want show scroll bar mobile devices. should visible scroll bar when scrolling.

how achieve functionality angular?

<!-- sidebar -->   <div id="sidebar-wrapper">       <ul class="sidebar-nav">           <li class="sidebar-brand">               <a href>                   customer view               </a>           </li>           <li ng-repeat="customer in customerdata" ng-class="{activeblock: $index == selected}">               <a href data-toggle="tab">{{customer.customernumber}}</a>           </li>                 </ul>   </div>   <!-- /#sidebar-wrapper --> 


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -