Module:Purge: Difference between revisions

From Test Wiki
Content deleted Content added
Anoop Rao (talk | contribs)
m 1 revision imported
 
 
Line 30: Line 30:
-- Make the display
-- Make the display
local display = mw.html.create('span')
local display
if args.page then
display
:attr('title', 'Purge this page')
display = args[1] or 'Purge'
else
:wikitext(args[1] or 'Purge')
display = tostring(display)
display = mw.html.create('span')
display
:attr('title', 'Purge this page')
:wikitext(args[1] or 'Purge')
display = tostring(display)
end
-- Output the HTML
-- Output the HTML