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

swift - Button on Table View Cell connected to local function -

dns - Dokku server hosts two sites with TLD's, both domains are landing on only one app -

c# - ajax - How to receive data both html and json from server? -