9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
|
|
( function () {
|
||
|
|
window.addEventListener( 'load', function () {
|
||
|
|
var notificationElement = document.querySelector( '.jetpack-sub-notification' );
|
||
|
|
if ( notificationElement ) {
|
||
|
|
notificationElement.scrollIntoView();
|
||
|
|
}
|
||
|
|
} );
|
||
|
|
} )();
|