Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: calling load fn with name - promise pending #386

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dist/modules/ocLazyLoad.loaders.core.js
Original file line number Diff line number Diff line change
@@ -211,7 +211,11 @@

// if someone used an external loader and called the load function with just the module name
if (angular.isUndefined(config.files) && angular.isDefined(config.name) && $delegate.moduleExists(config.name)) {
return $delegate.inject(config.name, localParams, true);
return $delegate.inject(config.name, localParams, true).then(function (res) {
deferred.resolve(res);
}, function (err) {
deferred.reject(err);
});
}

$delegate.filesLoader(config, localParams).then(function () {
8 changes: 6 additions & 2 deletions dist/ocLazyLoad.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* oclazyload - Load modules on demand (lazy load) with angularJS
* @version v1.0.10
* @version v1.1.0
* @link https://github.com/ocombe/ocLazyLoad
* @license MIT
* @author Olivier Combe <[email protected]>
@@ -1159,7 +1159,11 @@

// if someone used an external loader and called the load function with just the module name
if (angular.isUndefined(config.files) && angular.isDefined(config.name) && $delegate.moduleExists(config.name)) {
return $delegate.inject(config.name, localParams, true);
return $delegate.inject(config.name, localParams, true).then(function (res) {
deferred.resolve(res);
}, function (err) {
deferred.reject(err);
});
}

$delegate.filesLoader(config, localParams).then(function () {
4 changes: 2 additions & 2 deletions dist/ocLazyLoad.min.js

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions dist/ocLazyLoad.require.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* oclazyload - Load modules on demand (lazy load) with angularJS
* @version v1.0.10
* @version v1.1.0
* @link https://github.com/ocombe/ocLazyLoad
* @license MIT
* @author Olivier Combe <[email protected]>
@@ -1159,7 +1159,11 @@

// if someone used an external loader and called the load function with just the module name
if (angular.isUndefined(config.files) && angular.isDefined(config.name) && $delegate.moduleExists(config.name)) {
return $delegate.inject(config.name, localParams, true);
return $delegate.inject(config.name, localParams, true).then(function (res) {
deferred.resolve(res);
}, function (err) {
deferred.reject(err);
});
}

$delegate.filesLoader(config, localParams).then(function () {
4 changes: 2 additions & 2 deletions dist/ocLazyLoad.require.min.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion src/ocLazyLoad.loaders.core.js
Original file line number Diff line number Diff line change
@@ -202,7 +202,11 @@

// if someone used an external loader and called the load function with just the module name
if(angular.isUndefined(config.files) && angular.isDefined(config.name) && $delegate.moduleExists(config.name)) {
return $delegate.inject(config.name, localParams, true);
return $delegate.inject(config.name, localParams, true).then(res => {
deferred.resolve(res);
}, err => {
deferred.reject(err);
});
}

$delegate.filesLoader(config, localParams).then(() => {