fix: anchor 이동에서 #을 남기지 않도록

This commit is contained in:
2021-12-07 02:27:42 +09:00
parent d1a80241f5
commit cd0b98ee3c
3 changed files with 25 additions and 14 deletions
+2
View File
@@ -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';
+9
View File
@@ -0,0 +1,9 @@
export function scrollHardTo(elementId: string): void {
const element = document.getElementById(elementId);
if(!element){
return;
}
element.scrollIntoView({
behavior: 'auto',
});
}