Iceshrimp.NET/Iceshrimp.Frontend/Components/SearchComponent.razor.js

7 lines
No EOL
140 B
JavaScript

export function GetScrollY(){
return window.scrollY;
}
export function SetScrollY(number){
window.scroll(window.scrollX, number);
}