Momentum Scrolling

This commit is contained in:
Adam Bradley
2013-08-28 21:46:25 -05:00
parent 547110f436
commit 54e6d98343
2 changed files with 5 additions and 2 deletions

4
dist/framework.css vendored
View File

@ -228,7 +228,9 @@ a.list-item {
top: 0;
bottom: 0;
z-index: 0;
overflow: auto; }
overflow-y: scroll;
/* has to be scroll, not auto */
-webkit-overflow-scrolling: touch; }
.ion-panel-active-left {
left: 0; }

View File

@ -7,7 +7,8 @@
top: 0;
bottom: 0;
z-index: 0;
overflow: auto;
overflow-y: scroll; /* has to be scroll, not auto */
-webkit-overflow-scrolling: touch;
}
.ion-panel-active-left {