11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
|
|
/**
|
||
|
|
* Scrolls the notifications into view.
|
||
|
|
*/
|
||
|
|
export function scrollNotificationsIntoView() {
|
||
|
|
const element = document.getElementById( "notifications" );
|
||
|
|
|
||
|
|
if ( element ) {
|
||
|
|
element.scrollIntoView( { behavior: "smooth", block: "start" } );
|
||
|
|
}
|
||
|
|
}
|