Content deleted Content added
Add "Citation needed" date parameter |
Hardcode space fix |
||
Line 112:
-- Color and legend variables
for season = 1,num_seasons do
timeline['y'..season..'Title'] = (args["legend" .. season] or season) .. " " -- The space after this is not a regular space, it is a copy-pasted non-breaking space so the graph registers season names that are numbers (such as 1984 for American Horror Story) as a string, not a number; if it registers as a number, it will register as the first season. Do not remove/change it.
timeline['colors'] = timeline['colors'] .. args["color" .. season] .. ','
end
|