Next release, version/tag 1.0.5.

This commit is contained in:
Adrian C. (anrxc) 2009-08-01 23:15:09 +02:00
parent cad950a838
commit 047dba0e5d
1 changed files with 3 additions and 3 deletions

View File

@ -76,10 +76,10 @@ for w, i in pairs(_M) do
if i and i ~= _M and type(i) == "table" then if i and i ~= _M and type(i) == "table" then
-- Ignore the function table and helpers -- Ignore the function table and helpers
if w ~= "widgets" and w ~= "helpers" then if w ~= "widgets" and w ~= "helpers" then
-- Place functions in the namespace table -- Place widgets in the namespace table
widgets[w] = i.worker widgets[w] = i
-- Enable caching for all widget types -- Enable caching for all widget types
widget_cache[i.worker] = {} widget_cache[i] = {}
end end
end end
end end