Andrew Trice

Results 34 comments of Andrew Trice

Any code snippets you can share? I have not seen this issue. My guess is that it is related to hardware acceleration/CSS styles, which often have issues on Android. See...

Looks like github stripped the code from your comment... can you try resending?

This is working as intended. The sliding view takes up 100% width & 100% height for the current viewport, with the intent that the content inside of the sliding view...

However, this can all be adjusted/customized in CSS.

Can you post a code snippet, or an example online? You should be able to to determine scrolling purely via css. I often use iScroll for mobile devices (cross platform),...

OK, took me a minute to figure out what was going on. I was able to recreate the issue. First, set the following styles on the "body" div: overflow:auto; -webkit-overflow-scrolling:...

The easiest thing to do would be to start the swipe gesture earlier, to reduce the vertical scroll. In onTouchMove in slidingView.js, there are two if statements, that check for...

Can you post an example of your code? I have a sliding view + viewnavigator working here: http://triceam.github.com/app-UI/examples/samples/03%20-%20slidingView/02%20-%20view%20navigators/index.html In this example, touch scrolling works on mobile devices, but you use...

Try removing the height:100% from the .wrapper CSS class: Change this: .wrapper {min-width:100%;height:100%} to: .wrapper {min-width:100%;} I'm pretty sure that's your issue.

Can you explain this further, or provide a code snippet? I'm not sure what you mean. To change the content inside the view navigator, change the content of the "view"...