Skip to content

Commit 18ee376

Browse files
authored
Fix a formating bug
1 parent a88a3ba commit 18ee376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

calculator.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h2>Calculator for Lords Mobile Game</h2>
5353
</tr>
5454
<tr ng-repeat="x in cards">
5555
<td class="w3-right-align"><input id="{{'card'+$index}}" type="number" class="w3-right-align" ng-model="x.qty"><span ng-if="$last && shouldFocus">{{focusCard('card'+$index)}}</span></td>
56-
<td class="w3-right-align">{{formatValue(x.value)}}</td>
56+
<td class="w3-right-align">{{x.value|interval}}</td>
5757
<td><button class="w3-tooltip w3-btn w3-ripple" ng-click="removeCard($index)">&times;<span class="w3-text">Remove this line</span></button></td>
5858
</tr>
5959
</table>
@@ -73,7 +73,7 @@ <h5>Total</h5>
7373
<hr>
7474
<button class="w3-btn w3-ripple" ng-click="toggleAbout()">About &amp; Help</button>
7575
<div ng-show="about">
76-
<h3>Calculator for Lords Mobile Game v0.3.2</h3>
76+
<h3>Calculator for Lords Mobile Game v0.3.3</h3>
7777
<p>This calculator can helps you sum up the accelerators/speed ups from Lords Mobile game. It runs on most modern browsers and should work equally well on desktops, laptops, tablets and mobiles.</p>
7878
<p>Use the Time Interval buttons (minutes, hours and days), then place the correspondig quantity of accelerators and see the result on the display at the end (near the word "Sum").</p>
7979
<p>Press the Remove buttons (&times;) to delete each accelerator. To remove all them at once, choose the Remove button located at the top, near the "Resource" header.</p>

0 commit comments

Comments
 (0)