Module:Navbox: Difference between revisions
move border check to inner if to avoid bad navbar displaying
imported>Dinoguy1000 (minor whitespace: trim trailing spaces; tabs --> spaces) |
m>Jackmcbarn (move border check to inner if to avoid bad navbar displaying) |
||
Line 49: | Line 49: | ||
-- also no show/hide link, then we need a spacer on the right to achieve the left shift. | -- also no show/hide link, then we need a spacer on the right to achieve the left shift. | ||
if args.state == 'plain' then spacerSide = 'right' end | if args.state == 'plain' then spacerSide = 'right' end | ||
elseif args.navbar == 'plain' or (not args.name and mw.getCurrentFrame():getParent():getTitle() | elseif args.navbar == 'plain' or (not args.name and mw.getCurrentFrame():getParent():getTitle():gsub('/sandbox$', '') == 'Template:Navbox') then | ||
-- No navbar. Need a spacer on the left to balance out the width of the show/hide link. | -- No navbar. Need a spacer on the left to balance out the width of the show/hide link. | ||
if args.state ~= 'plain' then spacerSide = 'left' end | if args.state ~= 'plain' and (border == 'subgroup' or border == 'child' or border == 'none') then spacerSide = 'left' end | ||
else | else | ||
-- Will render navbar (or error message). If there's no show/hide link, need a spacer on the right | -- Will render navbar (or error message). If there's no show/hide link, need a spacer on the right |