mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 18:30:09 +00:00
fixed a small but stupd dependency bug...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
ae43366f9f
commit
588e3ccaf8
@ -485,7 +485,10 @@ module.FileSystemLoaderUI = core.ImageGridFeatures.Feature({
|
|||||||
doc: '',
|
doc: '',
|
||||||
|
|
||||||
tag: 'ui-fs-loader',
|
tag: 'ui-fs-loader',
|
||||||
depends: ['fs-loader'],
|
depends: [
|
||||||
|
'ui',
|
||||||
|
'fs-loader'
|
||||||
|
],
|
||||||
|
|
||||||
actions: FileSystemLoaderUIActions,
|
actions: FileSystemLoaderUIActions,
|
||||||
})
|
})
|
||||||
|
|||||||
@ -311,6 +311,9 @@ module.FeatureSet = {
|
|||||||
// XXX add ability to remove features by prefixing a '-' to its name
|
// XXX add ability to remove features by prefixing a '-' to its name
|
||||||
// ...if one -<feature> is present, remove all instances of
|
// ...if one -<feature> is present, remove all instances of
|
||||||
// <feature>
|
// <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){
|
buildFeatureList: function(obj, lst, auto_include, depth){
|
||||||
var that = this
|
var that = this
|
||||||
obj = obj || {}
|
obj = obj || {}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user