eclipse-archived / ceylon-herd

The Ceylon repository web application
Apache License 2.0
21 stars 11 forks source link

support reading API docs on iOS devices #241

Closed jvasileff closed 8 years ago

jvasileff commented 8 years ago

The iframe is not scrollable on iOS. Adding these css properties fixes it:

#wrap {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

There may be a better or more cross platform way to do this. These came from the first google search result I clicked on: https://davidwalsh.name/scroll-iframes-ios

FroMage commented 8 years ago

Actually, I may have to remove that iframe entirely since I don't think I can make it work across domains :(

FroMage commented 8 years ago

That page is gone.