Skip to content

Commit 833b967

Browse files
committed
chore: bump to 1.0.4
1 parent 23eb666 commit 833b967

8 files changed

Lines changed: 24 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<a name="1.0.4"></a>
2+
# 1.0.4 (2015-07-30)
3+
4+
5+
## Bug Fixes
6+
7+
- don't let unmet dependencies slip through (thank you unit tests!)
8+
([23eb666d](https://github.com/ocombe/ocLazyLoad/commit/23eb666d6627416e40aaa97783b9e81ec7153fe9))
9+
- don't try to call angular.module on config names
10+
([52219f92](https://github.com/ocombe/ocLazyLoad/commit/52219f923319e0856da47a6bce064b6ffb361641),
11+
[#217](https://github.com/ocombe/ocLazyLoad/issues/217), [#218](https://github.com/ocombe/ocLazyLoad/issues/218))
12+
13+
114
<a name="1.0.3"></a>
215
# 1.0.3 (2015-07-24)
316

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oclazyload",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Load modules on demand (lazy load) with angularJS",
55
"main": "dist/ocLazyLoad.js",
66
"homepage": "https://github.com/ocombe/ocLazyLoad",

dist/modules/ocLazyLoad.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
if (!angular.isString(moduleName)) {
171171
moduleName = getModuleName(moduleName);
172172
}
173-
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || realModules.indexOf(moduleName) === -1) {
173+
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || modules[moduleName] && realModules.indexOf(moduleName) === -1) {
174174
continue;
175175
}
176176
// new if not registered

dist/ocLazyLoad.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* oclazyload - Load modules on demand (lazy load) with angularJS
3-
* @version v1.0.3
3+
* @version v1.0.4
44
* @link https://github.com/ocombe/ocLazyLoad
55
* @license MIT
66
* @author Olivier Combe <olivier.combe@gmail.com>
@@ -177,7 +177,7 @@
177177
if (!angular.isString(moduleName)) {
178178
moduleName = getModuleName(moduleName);
179179
}
180-
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || realModules.indexOf(moduleName) === -1) {
180+
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || modules[moduleName] && realModules.indexOf(moduleName) === -1) {
181181
continue;
182182
}
183183
// new if not registered

dist/ocLazyLoad.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ocLazyLoad.require.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* oclazyload - Load modules on demand (lazy load) with angularJS
3-
* @version v1.0.3
3+
* @version v1.0.4
44
* @link https://github.com/ocombe/ocLazyLoad
55
* @license MIT
66
* @author Olivier Combe <olivier.combe@gmail.com>
@@ -177,7 +177,7 @@
177177
if (!angular.isString(moduleName)) {
178178
moduleName = getModuleName(moduleName);
179179
}
180-
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || realModules.indexOf(moduleName) === -1) {
180+
if (!moduleName || justLoaded.indexOf(moduleName) !== -1 || modules[moduleName] && realModules.indexOf(moduleName) === -1) {
181181
continue;
182182
}
183183
// new if not registered

dist/ocLazyLoad.require.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oclazyload",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Load modules on demand (lazy load) with angularJS",
55
"main": "dist/ocLazyLoad.js",
66
"author": "Olivier Combe <olivier.combe@gmail.com>",

0 commit comments

Comments
 (0)