emailconfirmed
69
edits
No edit summary |
PerikiyoXD (talk | contribs) m (Inlined local varialbes into function calls) |
||
Line 63: | Line 63: | ||
-- item page types | -- item page types | ||
function p.showVariablePage(frame) | function p.showVariablePage(frame) | ||
return p.showPage(frame, { "Value" }) | |||
return p.showPage(frame, | |||
end | end | ||
function p.showFunctionPage(frame) | function p.showFunctionPage(frame) | ||
return p.showPage(frame, { "Parameters", "Return", "Callbacks" }) | |||
end | end | ||
function p.showPropertyPage(frame) | function p.showPropertyPage(frame) | ||
return p.showPage(frame, { "Value" }) | |||
return p.showPage(frame, | |||
end | end | ||
function p.showMethodPage(frame) | function p.showMethodPage(frame) | ||
return p.showPage(frame, { "Parameters", "Return", "Callbacks" }) | |||
end | end | ||
function p.showEventPage(frame) | function p.showEventPage(frame) | ||
return p.showPage(frame, { "Parameters", "Attributes" }) | |||
end | end | ||