Widget:Calculator/Magic/Aurum: Difference between revisions
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
<label> | <label> | ||
<span><a href="/w/Alchemy_Scroll" title="Alchemy Scroll">Alchemy Scroll</a> Price:</span> | <span><a href="/w/Alchemy_Scroll" title="Alchemy Scroll">Alchemy Scroll</a> Price:</span> | ||
<input type="number" id="scrollPrice" value="350"> | <input type="number" id="scrollPrice" value="350" min="1" max="1000"> | ||
</label> | </label> | ||
<label> | <label> | ||
<span>Quantity:</span> | <span>Quantity:</span> | ||
<input type="number" id="quantity" value="1"> | <input type="number" id="quantity" value="1" min="1" max="99999"> | ||
</label> | </label> | ||
</form> | </form> | ||
Line 35: | Line 35: | ||
const aurumMinor = isNaN(aurumMinorValue) ? 0 : aurumMinorValue - scrollPrice; | const aurumMinor = isNaN(aurumMinorValue) ? 0 : aurumMinorValue - scrollPrice; | ||
const aurumMajor = isNaN(aurumMajorValue) ? 0 : aurumMajorValue - scrollPrice | const aurumMajor = isNaN(aurumMajorValue) ? 0 : aurumMajorValue - scrollPrice; | ||
const minorTotal = aurumMinor * quantity; | const minorTotal = aurumMinor * quantity; |