buildingfirefoxos / Building-Blocks

Reusable components for Firefox OS
Other
292 stars 97 forks source link

scrollable class and firefox desktop #34

Closed Mte90 closed 10 years ago

Mte90 commented 10 years ago

I have see that the scrollable class in Firefox desktop insert the scroll and in firefox for android create some problems.

There is a way for fix this?

Mte90 commented 10 years ago

Javascript fix for firefox desktop:

/* Check if not Firefox OS */
  if (navigator.userAgent.indexOf("Android") > -1 || navigator.userAgent.indexOf("Mobile") === -1) {
    //Fix the scrollbar on Firefox Desktop
    $('.scrollable').css('overflow', 'auto');
  }