if I have content like this...
<div>
{{content}}
</div>
<div kendoWindowContainer></div>
if the content on the page is large enough, then when I create the window with the angular service, it makes the page scroll down to the bottom where the windowContainer div is located. Even though the service is explicitly setting the window position to be at the top of the page.
So effectively, when the user clicks the button to trigger showing the window, suddenly the page scrolls to the bottom and they can no longer see the section of the content they were looking at NOR the window since it has scrolled up as well.
How do I prevent the page from scrolling to where the container is located when I'm opening a window with the angular service?