Content deleted Content added
remove a couple tostrings |
poke |
||
Line 14:
local function class_percent(param, total)
-- These suck for i18n because the % is forced to the right without spacing,
return string.format('%f %%', round(100 * param / total))▼
-- both in a required context (CSS) and unrequired (to-be-displayed text).
end
Line 20 ⟶ 22:
local remaining = sum - total
if remaining > 0 then
return
else
return nil
|