Module:Slottable: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 45:
-- end
if item.speed == nil or (tonumber(item.speed) and tonumber(item.speed) < 0) then
row:tag('td'):addClass('table-na nohighlight'):css('text-align', 'center'):wikitext('<small>N/A</small>')
else
-- row:tag('td'):wikitext(item.speed):done()
if type(item.speed) ~= "number" and tonumber(item.speed) == nil then
row:tag('td'):wikitext('Not number'):done()
else
row:tag('td'):wikitext(item.speed):done()
end
end
-- if item.speed == nil or (tonumber(item.speed) and tonumber(item.speed) < 0) then
-- -- proceed with your existing code
-- row:tag('td'):addClass('table-na nohighlight'):css('text-align', 'center'):wikitext('<small>N/A</small>')
-- else
-- if not tonumber(item.speed) then
-- row:tag('td'):wikitext('Not number'):done()
-- else
-- row:tag('td'):wikitext(item.speed):done()
-- end
-- end
end