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.group(
make('a'), make('a'),
'b') 'b')
make('---')
make('e') make('e')
// embeded browser... // embeded browser...
make(browser.Browser(function(make){ make(browser.Browser(function(make){

View File

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