Content deleted Content added
The Mol Man (talk | contribs) No edit summary |
The Mol Man (talk | contribs) 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
▲ 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)
else
▲ end
end
|