Module:FlexGallery
Documentation for this module may be created at Module:FlexGallery/doc
local p = {}
local width
local images = {}
local thumbnails = {}
-- frame.args
p.hi = function(frame)
for k, v in pairs(frame.args) do
if k == 1 then
if type(v) == number then
width = v
return width
end
end
end
end
return p