Skip to content

Commit

Permalink
Remove unneeded function
Browse files Browse the repository at this point in the history
  • Loading branch information
roythearsonist committed Jul 3, 2021
1 parent 34e112e commit 5fb1efe
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions js/ids.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
function getids(id) {
let element = document.getElementById(id);
}
function projectsid() {
getids("projects");
element.style.textAlign = "left";
elemeny.style.flexDirection = "column";
let projects = document.getElementById("projects");
projects.style.textAlign = "left";
projects.style.flexDirection = "column";
}
function useallfunctions() {
projectsid();
projectsid();
}
useallfunctions();
useallfunctions();

0 comments on commit 5fb1efe

Please sign in to comment.