In IOS8 Safari there is a new bug with position fixed.
If you focus a textarea that is in a fixed panel, safari will scroll you to the bottom of the page.
T
I had the issue, below lines of code resolved it for me -
html{ overflow: scroll; -webkit-overflow-scrolling: touch; }