Fix annoying form editing behavior

Fix annoying form editing behavior

So every time you click to edit a form field you guys do a window.scrollTo(0,0) before opening the edit modal sending the user all the way back to the top of the page. I suggest you use click event.pageX/Y to position the modal or get the current window scroll as a baseline for where to open the modal. 

Thanks!