UI tweak, remove redundant info
This commit is contained in:
parent
9ce1666977
commit
42d0657bfe
2 changed files with 8 additions and 7 deletions
|
@ -723,7 +723,8 @@ function calculateBuildStats() {
|
|||
//skpRow.classList.add("left");
|
||||
let td = document.createElement("p");
|
||||
//td.classList.add("left");
|
||||
let skpSummary = document.createElement("b");
|
||||
|
||||
/* let skpSummary = document.createElement("b");
|
||||
skpSummary.textContent = "Assigned " + player_build.assigned_skillpoints + " skillpoints. Total: (";
|
||||
//skpSummary.classList.add("itemp");
|
||||
td.appendChild(skpSummary);
|
||||
|
@ -742,12 +743,12 @@ function calculateBuildStats() {
|
|||
let skpEnd = document.createElement("b");
|
||||
skpEnd.textContent = ")";
|
||||
td.appendChild(skpEnd);
|
||||
skpRow.append(td);
|
||||
skpRow.append(td); */
|
||||
|
||||
let remainingSkp = document.createElement("p");
|
||||
remainingSkp.classList.add("center");
|
||||
let remainingSkpTitle = document.createElement("b");
|
||||
remainingSkpTitle.textContent = "Remaining skillpoints: ";
|
||||
remainingSkpTitle.textContent = "Assigned " + player_build.assigned_skillpoints + " skillpoints. Remaining skillpoints: ";
|
||||
let remainingSkpContent = document.createElement("b");
|
||||
//remainingSkpContent.textContent = "" + (levelToSkillPoints(player_build.level) - player_build.assigned_skillpoints < 0 ? "< 0" : levelToSkillPoints(player_build.level) - player_build.assigned_skillpoints);
|
||||
remainingSkpContent.textContent = "" + (levelToSkillPoints(player_build.level) - player_build.assigned_skillpoints);
|
||||
|
|
|
@ -172,7 +172,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br><br>
|
||||
<br>
|
||||
</div>
|
||||
<div class="skillpoints" style="grid-column:1/span 3;grid-row:3;">
|
||||
<div class="center" style="grid-column:1;grid-row:1">
|
||||
|
@ -653,11 +653,11 @@
|
|||
<br>
|
||||
<div class="externalBuffs hide-container-block" id="buff-box" style="display: none;">
|
||||
<table class="externalBuffs" style="padding-bottom:20px">
|
||||
<!--tr>
|
||||
<p class = "buffs-title itemp title">
|
||||
<tr>
|
||||
<p class = "buffs-title itemp smalltitle">
|
||||
Spell Boosts & Powder Specials:
|
||||
</p>
|
||||
</tr-->
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<button class = "button-narrow" id = "vanish-boost" onclick = "updateBoosts('vanish-boost', true)">
|
||||
|
|
Loading…
Reference in a new issue