cleanup and tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-05-11 15:03:12 +03:00
parent 087c4a4ccc
commit ad5ff5b43c
2 changed files with 1 additions and 6 deletions

View File

@ -106,14 +106,10 @@ requirejs([
dialog_1 = browser.Browser(function(make){ dialog_1 = browser.Browser(function(make){
make(['list', 'of', 'text']) make(['list', 'of', 'text'])
make.group( make.group(
make('group item 0'), make('group item 0', function(){ console.log('###') }),
'group item 1 (bare)') 'group item 1 (bare)')
// XXX Q: should we show only one if multiple lines are in sequence??? // XXX Q: should we show only one if multiple lines are in sequence???
make('---') make('---')
//make('---')
// XXX not yet visible...
//make('...')
//make('e')
// embeded browser... // embeded browser...
make(browser.Browser(function(make){ make(browser.Browser(function(make){
make('inlined browser item 0') make('inlined browser item 0')

View File

@ -966,7 +966,6 @@ var BaseBrowserPrototype = {
options, context) }, options, context) },
// XXX EXPERIMENTAL...
// //
// Get list of matching elements... // Get list of matching elements...
// NOTE: this is similar to .filter(..) // NOTE: this is similar to .filter(..)