If you copy-paste the code in step2 in the readme.md it crashes because in this line item1, item2 are undefined.
ui.add('list', { name:'List', callback:callback, list:[item1, item2, ...]});
quick fix: (notice the quotes in item1, item2, etc..)
ui.add('list', { name:'List', callback:callback, list:['item1', 'item2', '...']});
If you copy-paste the code in step2 in the readme.md it crashes because in this line item1, item2 are undefined.
ui.add('list', { name:'List', callback:callback, list:[item1, item2, ...]});
quick fix: (notice the quotes in item1, item2, etc..)ui.add('list', { name:'List', callback:callback, list:['item1', 'item2', '...']});
good job with uil