tapquo / Lungo.js

A framework for developers who want to design, build and share cross device applications.
http://lungo.tapquo.com
Other
2.41k stars 567 forks source link

Article cant be scrolled in Cordova #323

Open fernandoiwamoto opened 10 years ago

fernandoiwamoto commented 10 years ago

I'm using cordova 3.3 and I compiled the example given here. However, seeing in the web works perfectly fine. On cellphones, the aside features works fine scrolling, but when it comes to the content, I cant even scroll(scroll like 1mm) or not even scroll. Is it a bug from cordova?

refda commented 10 years ago

I don't have trouble for example in combination with http://app-generator.net (Android).

vtellez commented 9 years ago

I solved this adding this to my css file:

.myscroll{ overflow-x:hidden; overflow-y:scroll; -webkit-overflow-scrolling:touch; -webkit-box-flex:1; }

article{ overflow-y : auto; }

Then you can use:

for example. For me, it works in all android devices