mirror of
https://github.com/airstruck/luigi.git
synced 2026-02-01 11:38:16 -07:00
10 lines
186 B
Lua
10 lines
186 B
Lua
return function (self)
|
|
|
|
for index, child in ipairs(self) do
|
|
child.type = child.type or 'menu.item'
|
|
child.parentMenu = self
|
|
child.rootMenu = self
|
|
end
|
|
|
|
end
|