Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Commit

Permalink
Merge pull request #218 from alexspeller/master
Browse files Browse the repository at this point in the history
Update docs with newer info on mobile browsers
  • Loading branch information
stefanpenner committed Mar 25, 2015
2 parents 2c31148 + 0484fa8 commit 1f3cd72
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@

An efficient incremental rendering list view for large lists.

`Ember.ListView` works on major modern browsers and also on major mobile devices (iOS, Android).
However, there are known issues with using `Ember.ListView` on mobile web (if you have a long list
and you're touch-scrolling it very fast, you'll see that items in your list start to disappear
and after some lag appear again). That happens because mobile browsers do not emit scroll events
during the momentum scroll phase that `Ember.ListView` needs to capture.

If you want to have something running on mobile, please make sure to use `Ember.VirtualListView`,
which behaves exactly the same (in terms of configuration and working with it) as `Ember.ListView`.
However, note that `Ember.VirtualListView` doesn't have a native scroll bar. This is something that
we need to work on for future releases of `Ember.ListView`.
`Ember.ListView` works on major modern browsers and also on major mobile devices (iOS, Android). However, there are known issues with using `Ember.ListView` on mobile web (if you have a long list and you're touch-scrolling it very fast, you'll see that items in your list start to disappear and after some lag appear again). That happens because some mobile browsers do not emit scroll events during the momentum scroll phase that `Ember.ListView` needs to capture. Also, if the browser is under heavy load, it can just stop emitting some events.

If you do experience this problem. We offer an API compatible `Ember.VirtualListView` that does the momentum scroll entirely in JS. However, note that `Ember.VirtualListView` doesn't have a native scroll bar. This is something that we need to work on for future releases of `Ember.ListView`

### Downloads

Expand Down

0 comments on commit 1f3cd72

Please sign in to comment.