View source for Module:Switch infobox
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function p.main(frame)
local args = frame:getParent().args
local contents = {}
local i = 1
while args['item'..i] do
table.insert(contents, { text = args['text'..i] or ('Item '..i),
content = '\n' .. args['item'..i] })
i = i + 1
end
local ret = mw.html.create('div')
:addClass('switch-infobox')
:addClass('loading')
:tag('span')
:addClass('loading-button')
:addClass('button')
:wikitext('Loading...')
000
1:0
Templates used on this page:
- Template:DependencyList (view source)
- Template:Documentation (view source)
- Template:No documentation (view source)
- Template:PageType (view source)
- Module:Array (view source)
- Module:DPLlua (view source)
- Module:DependencyList (view source)
- Module:Documentation (view source)
- Module:Paramtest (view source)
- Module:Switch infobox/doc (view source)
- Module:Tooltip (view source)
- Module:Yesno (view source)
Return to Module:Switch infobox.