Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-02-14 02:24:36 +03:00
parent 12fe2b11a4
commit ea6209316e
2 changed files with 6 additions and 8 deletions

View File

@ -108,6 +108,7 @@ requirejs([
make.group(
make('a'),
'b')
make('---')
make('e')
// embeded browser...
make(browser.Browser(function(make){

View File

@ -232,8 +232,6 @@ var BaseBrowserPrototype = {
//
//
// NOTE: this is not designed to be called directly...
//
// XXX not sure how to handle options in here -- see .make(..) and its notes...
__list__: function(make, options){
throw new Error('.__list__(..): Not implemented.') },
@ -293,12 +291,11 @@ var BaseBrowserPrototype = {
// Renderers...
//
// .renderList(items, options)
// // XXX unify signature with other renderers -- replace options
// // with context as it already contains .options...
// .renderNested(header, sublist, contex, item, options)
// .renderItem(item, i, options)
// .renderGroup(items, options)
// .renderList(items, context)
// .renderNested(header, sublist, item, context)
// .renderNestedHeader(item, i, context)
// .renderItem(item, i, context)
// .renderGroup(items, context)
//
//
renderList: function(items, context){