Content deleted Content added
Jackmcbarn (talk | contribs) rm unused parameters |
Jackmcbarn (talk | contribs) only create one builder and pass it around |
||
Line 18:
end
local function titleItem(builder, content)
if content ~= nil then
end
end
local function left(builder, year)
end
local function center(builder, args, year)
:css( 'width', '10px' )
:css( 'border', '1px solid black' )
Line 35:
end
local function right(builder, args, year)
if isYearReleased(args, year) == nil then return
builder = builder:tag('td')
▲ :node( titleItem(args[year]) or titleItem(args[year .. 'a' ]) )
for i = 98, 106 do
end
end
local function row(builder, args, year)
end
Line 104 ⟶ 101:
for year = firstyear, lastyear do
row(ret
end
|