"ماڈیول:Arguments" کے نسخوں کے درمیان فرق

add a "wrappers" option and fix bug when frame:getParent() returns nil, per protected edit request by User:Jackmcbarn
allow using both the frame and parent frame arguments with the wrappers option if specifically requested, per protected edit request by User:Jackmcbarn
سطر 92: سطر 92:
found = true
found = true
end
end
if found then
-- We test for false specifically here so that nil (the default) acts like true.
if found or options.frameOnly == false then
pargs = parent.args
pargs = parent.args
else
end
if not found or options.parentOnly == false then
fargs = frame.args
fargs = frame.args
end
end
سطر 107: سطر 110:
pargs = parent and parent.args or nil
pargs = parent and parent.args or nil
end
end
if options.parentFirst then
end
fargs, pargs = pargs, fargs
if options.parentFirst then
end
fargs, pargs = pargs, fargs
end
end
else
else