fix: anchor 이동에서 #을 남기지 않도록
This commit is contained in:
@@ -7,7 +7,9 @@ import './msg.ts';
|
||||
import './map.ts';
|
||||
import { exportWindow } from './util/exportWindow';
|
||||
|
||||
import { scrollHardTo } from './util/scrollHardTo';
|
||||
|
||||
exportWindow(scrollHardTo, 'scrollHardTo');
|
||||
exportWindow($, '$');
|
||||
|
||||
import '../scss/main.scss';
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
export function scrollHardTo(elementId: string): void {
|
||||
const element = document.getElementById(elementId);
|
||||
if(!element){
|
||||
return;
|
||||
}
|
||||
element.scrollIntoView({
|
||||
behavior: 'auto',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user