some minor stuff...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-05-02 03:49:34 +03:00
parent 49e7e2a27b
commit c813ec3d16

View File

@ -430,6 +430,7 @@ var DialogsActions = actions.Actions({
o && o.focus() o && o.focus()
}) })
})], })],
// XXX should this be renamed to BottomDrawer???
Drawer: ['- Interface/', Drawer: ['- Interface/',
makeUIContainer(function(dialog, options){ makeUIContainer(function(dialog, options){
var parent = (options || {}).parentElement var parent = (options || {}).parentElement
@ -448,6 +449,27 @@ var DialogsActions = actions.Actions({
return d return d
})], })],
// XXX not implemented yet...
TopDrawer: ['- Interface/',
makeUIContainer(function(dialog, options){
// XXX
console.error('Not yet implemented.')
})],
BottomDrawer: ['- Interface/',
makeUIContainer(function(dialog, options){
// XXX
console.error('Not yet implemented.')
})],
RightDrawer: ['- Interface/',
makeUIContainer(function(dialog, options){
// XXX
console.error('Not yet implemented.')
})],
LeftDrawer: ['- Interface/',
makeUIContainer(function(dialog, options){
// XXX
console.error('Not yet implemented.')
})],
// XXX need to: // XXX need to:
// - dock panels // - dock panels
// - save panel state (position, collapse, dock, ...) // - save panel state (position, collapse, dock, ...)
@ -455,7 +477,7 @@ var DialogsActions = actions.Actions({
Panel: ['- Interface/', Panel: ['- Interface/',
makeUIContainer(function(dialog, options){ makeUIContainer(function(dialog, options){
// XXX // XXX
console.error('Panels are not yet implemented.') console.error('Not yet implemented.')
})], })],