still thinking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-01-23 05:45:50 +03:00
parent 61d829afcd
commit 4e9f339544

View File

@ -40,7 +40,12 @@ var Items = module.items = function(){}
// XXX also would be nice to set the last created items to .last or
// similar in the context...
Items.focus = function(){
},
}
// Embed a list...
//
Items.embed = function(){
}
// singular items...
@ -87,7 +92,10 @@ var Items.Group = function(items){}
// XXX how do we indicate the selected item???
// - options.path / options.selected?
// - path argument?
Items.List = function(values){}
Items.List = function(values){
// XXX STUB...
return this.embed(List(values))
}
Items.EditableList = function(values){}
Items.EditablePinnedList = function(values){}