Remove "framework"

This commit is contained in:
schmelczerandras 2020-11-17 20:52:59 +01:00
parent b45bdb18a0
commit dc86d30eb2
72 changed files with 359 additions and 333 deletions

View file

@ -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();