Remove "framework"
This commit is contained in:
parent
b45bdb18a0
commit
dc86d30eb2
72 changed files with 359 additions and 333 deletions
11
src/index.ts
11
src/index.ts
|
|
@ -2,16 +2,9 @@ import './static/no-change/favicon.ico';
|
|||
import './static/no-change/og-image.jpg';
|
||||
import './static/no-change/robots.txt';
|
||||
import './static/no-change/404.html';
|
||||
|
||||
import './styles.scss';
|
||||
import { create } from './portfolio';
|
||||
|
||||
const initialize = () => {
|
||||
create();
|
||||
addSupportForTabNavigation();
|
||||
removeUnnecessaryOutlines();
|
||||
};
|
||||
|
||||
const addSupportForTabNavigation = () =>
|
||||
(document.onkeydown = e => {
|
||||
if (e.key === ' ') {
|
||||
|
|
@ -25,4 +18,6 @@ const removeUnnecessaryOutlines = () =>
|
|||
(e.target as HTMLElement)?.blur();
|
||||
});
|
||||
|
||||
initialize();
|
||||
create();
|
||||
addSupportForTabNavigation();
|
||||
removeUnnecessaryOutlines();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue