16 lines
No EOL
305 B
JavaScript
16 lines
No EOL
305 B
JavaScript
export function GetHeight(ref){
|
|
if (ref != null) {
|
|
console.log(ref.scrollHeight)
|
|
return ref.scrollHeight;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
export function GetScrollTop(ref) {
|
|
return ref.scrollTop;
|
|
}
|
|
|
|
export function SetScrollTop(number, ref) {
|
|
ref.scrollTop = number;
|
|
}
|