cleanup...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2015-12-31 10:40:25 +03:00
parent 8480c0425c
commit 574f4ff48e

View File

@ -15,11 +15,12 @@ requirejs.config({
// XXX this does not work on direct filesystem access... // XXX this does not work on direct filesystem access...
//urlArgs: 'bust='+Date.now(), //urlArgs: 'bust='+Date.now(),
}) })
var _require = require var _require = require
require = requirejs require = requirejs
//---------------------------------------------------------------------
var core = require('features/core') var core = require('features/core')
var base = require('features/base') var base = require('features/base')
var location = require('features/location') var location = require('features/location')
@ -34,7 +35,7 @@ var meta = require('features/meta')
//--------------------------------------------------------------------- /*********************************************************************/
// NOTE: this is here to simplify importing... // NOTE: this is here to simplify importing...
var ImageGridFeatures = var ImageGridFeatures =
@ -43,46 +44,17 @@ module.ImageGridFeatures =
//---------------------------------------------------------------------
/*********************************************************************/
// XXX stub action set -- this needs to be auto-generated... // XXX stub action set -- this needs to be auto-generated...
var a = actions.Actions() var a = actions.Actions()
// used switch experimental actions on (set to true) or off (unset or false)...
//a.experimental = true
//a.logger = a.logger || {emit: function(e, v){ console.log(' ', e, v) }}
// setup actions... // setup actions...
// XXX this will fail because we did not load ui...
ImageGridFeatures ImageGridFeatures
.setup(a, [ .setup(a, ['viewer-commandline'])
'viewer-commandline',
// XXX this is not for production...
'experiments',
])
.start() .start()
/*
// report stuff...
// XXX we also have .conflicts and .missing
a.features.excluded.length > 0
&& console.warn('Features excluded (%d):',
a.features.excluded.length,
a.features.excluded)
console.log('Features not applicable (%d):',
a.features.unapplicable.length,
a.features.unapplicable)
console.log('Features loaded (%d):',
a.features.features.length,
a.features.features)
*/
/********************************************************************** /**********************************************************************