Module:JI ratio finder: Difference between revisions

Ganaram inukshuk (talk | contribs)
Added subgroup search and filtering
Ganaram inukshuk (talk | contribs)
m Added nonbreaking space
Line 326: Line 326:
if diff > 0 then
if diff > 0 then
text = text .. string.format(' (+%.3f)', diff)
text = text .. string.format('&nbsp(+%.3f)', diff)
elseif diff < 0 then
elseif diff < 0 then
text = text .. string.format(' (%.3f)', diff)
text = text .. string.format('&nbsp(%.3f)', diff)
elseif diff == 0 then
elseif diff == 0 then
text = text .. " (just)"
text = text .. "&nbsp(just)"
end
end