2014-07-20 03:02:18 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
*
|
2015-05-21 04:00:28 +03:00
|
|
|
* 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
|
|
|
|
|
*
|
2014-07-20 03:02:18 +04:00
|
|
|
*
|
|
|
|
|
**********************************************************************/
|
2016-08-20 22:49:36 +03:00
|
|
|
(typeof(define)[0]=='u'?function(f){module.exports=f(require)}:define)(
|
|
|
|
|
function(require){ var module={} // makes module AMD/node compatible...
|
|
|
|
|
/*********************************************************************/
|
2014-07-20 03:02:18 +04:00
|
|
|
|
2016-02-25 02:38:01 +03:00
|
|
|
var features = require('features/all')
|
2015-12-14 00:00:17 +03:00
|
|
|
|
|
|
|
|
|
2015-11-02 21:06:42 +03:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
|
2015-12-17 03:34:20 +03:00
|
|
|
// NOTE: this is here to simplify importing...
|
|
|
|
|
var ImageGridFeatures =
|
|
|
|
|
module.ImageGridFeatures =
|
2016-02-25 02:38:01 +03:00
|
|
|
features.ImageGridFeatures
|
2014-12-08 13:04:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-20 03:02:18 +04:00
|
|
|
/**********************************************************************
|
2016-08-20 22:49:36 +03:00
|
|
|
* vim:set ts=4 sw=4 : */ return module })
|