this happens because at line 81, the scrollTop of the body is used: ``` pan.startingPositionY = dcoument.body.scrollTop; ``` instead of the contentEL. So to fix this replace line 81 with ``` pan.startingPositionY = options.contentEl.scrollTop; ```