@urso/core 0.7.75 → 0.7.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ class ModulesAssetsService {
|
|
|
74
74
|
* @param {Function} callback
|
|
75
75
|
* @returns
|
|
76
76
|
*/
|
|
77
|
-
loadGroup(assetsSpace, group, callback = () => { }, updateCallback) {
|
|
77
|
+
loadGroup(assetsSpace, group, callback = () => { }, updateCallback = () => { }) {
|
|
78
78
|
if (!assetsSpace) //global space
|
|
79
79
|
assetsSpace = this.assets;
|
|
80
80
|
|
|
@@ -411,7 +411,7 @@ class ModulesAssetsService {
|
|
|
411
411
|
if (!groupName)
|
|
412
412
|
Urso.logger.error('ModulesAssetsService lazy loading groupName error');
|
|
413
413
|
|
|
414
|
-
this.loadGroup(groupName, () => { this._continueLazyLoad(step + 1); })
|
|
414
|
+
this.loadGroup(null, groupName, () => { this._continueLazyLoad(step + 1); })
|
|
415
415
|
}
|
|
416
416
|
|
|
417
417
|
/**
|