Alex A. Naanou 6a9ad3ba15 tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2016-08-21 02:19:24 +03:00

40 lines
1.1 KiB
JavaScript
Executable File

/**********************************************************************
*
* Base architecture:
*
* Two trees are maintained:
* - no-gui
* - gui
*
* no-gui:
* aggregates:
* data
* images
* defines universal set of actions to manage and control state
*
* gui:
* extends no-gui and adds:
* ribbons
* extends and defines a set of gui control and state actions
*
*
**********************************************************************/
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
(function(require){ var module={} // make module AMD/node compatible...
/*********************************************************************/
var features = require('features/all')
//---------------------------------------------------------------------
// NOTE: this is here to simplify importing...
var ImageGridFeatures =
module.ImageGridFeatures =
features.ImageGridFeatures
/**********************************************************************
* vim:set ts=4 sw=4 : */ return module })