Module:Episode list: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 118:
if ProdCode and args.ProdCode then
ProdCode:attr('id','pc'..args.ProdCode)
end
return_table = tostring(table_row)
if args.ShortSummary and on_same_page then
local bottom_wrapper = mw.html.create('tr')
local ShortSummary = mw.html.create('td')
:addClass('description')
:css('border-bottom','solid 3px #'..line_color)
:attr('colspan',nonnil_params)
:wikitext(args.ShortSummary)
bottom_wrapper:node(ShortSummary)
return_table = return_table..tostring(bottom_wrapper)
end
Line 142 ⟶ 130:
end
if args.ShortSummary and on_same_page then
return return_table..categories
local bottom_wrapper = mw.html.create('tr')
local ShortSummary = mw.html.create('td')
:addClass('description')
:css('border-bottom','solid 3px #'..line_color)
:attr('colspan',nonnil_params)
:wikitext(args.ShortSummary)
bottom_wrapper:node(ShortSummary)
return_table = return_tabletostring(table_row)..tostring(bottom_wrapper)..categories
else
return_table = tostring(table_row)..categories
end
end