fixed a small but stupd dependency bug...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-04-20 00:43:20 +03:00
parent ae43366f9f
commit 588e3ccaf8
2 changed files with 7 additions and 1 deletions

View File

@ -485,7 +485,10 @@ module.FileSystemLoaderUI = core.ImageGridFeatures.Feature({
doc: '',
tag: 'ui-fs-loader',
depends: ['fs-loader'],
depends: [
'ui',
'fs-loader'
],
actions: FileSystemLoaderUIActions,
})

View File

@ -311,6 +311,9 @@ module.FeatureSet = {
// XXX add ability to remove features by prefixing a '-' to its name
// ...if one -<feature> is present, remove all instances of
// <feature>
// XXX .buildFeatureList() is slow and can be a bottleneck for large
// numbers of features... might be a good idea to take a look at
// this sometime...
buildFeatureList: function(obj, lst, auto_include, depth){
var that = this
obj = obj || {}