Skip to content

Commit

Permalink
remove aboutLinks variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanhowell5195 committed Aug 1, 2023
1 parent f44b38b commit 78ed189
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions plugins/minecraft_title_generator/minecraft_title_generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@
colour: "#FF4444"
}
}
const aboutLinks = `<div class="minecraft-title-links">${Object.values(links).map(e => `
<a href="${e.link}">
${Blockbench.getIconNode(e.icon, e.colour).outerHTML}
<p>${e.text}</p>
</a>
`).join("")}</div>`
const stopConfigs = [
[0.5],
[0.4, 0.8],
Expand Down Expand Up @@ -318,7 +312,12 @@
</p>
</content>
<div class="spacer"></div>
${aboutLinks}
<div class="minecraft-title-links">${Object.values(links).map(e => `
<a href="${e.link}">
${Blockbench.getIconNode(e.icon, e.colour).outerHTML}
<p>${e.text}</p>
</a>
`).join("")}</div>
<div class="button_bar">
<button id="create_new_model_button" style="margin-top:20px;margin-bottom:24px;" @click="create">
<i class="material-icons">${icon}</i>
Expand Down

0 comments on commit 78ed189

Please sign in to comment.