Skip to content

Commit

Permalink
chore: bump to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Jul 10, 2015
1 parent c3fda90 commit e1a3043
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 16 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
<a name="1.0.2"></a>
# 1.0.2 (2015-07-10)


## Bug Fixes

- add extra condition to improve karma testing
([f0c33aae](https://github.com/ocombe/ocLazyLoad/commit/f0c33aaea84511a276dd946dd48bfe2cb20d1e73))


## Features

- add interoperability with CommonJS
([b0536ad4](https://github.com/ocombe/ocLazyLoad/commit/b0536ad4104467922c36bcf55a8a072343d102bc))


<a name="1.0.1"></a>
# 1.0.1 (2015-06-01)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oclazyload",
"version": "1.0.1",
"version": "1.0.2",
"description": "Load modules on demand (lazy load) with angularJS",
"main": "dist/ocLazyLoad.js",
"homepage": "https://github.com/ocombe/ocLazyLoad",
Expand Down
2 changes: 1 addition & 1 deletion dist/modules/ocLazyLoad.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
names[name] = true;
append(document.getElementById(name));
name = name.replace(':', '\\:');
if (element[0].querySelectorAll) {
if (typeof element[0] !== 'undefined' && element[0].querySelectorAll) {
angular.forEach(element[0].querySelectorAll('.' + name), append);
angular.forEach(element[0].querySelectorAll('.' + name + '\\:'), append);
angular.forEach(element[0].querySelectorAll('[' + name + ']'), append);
Expand Down
4 changes: 2 additions & 2 deletions dist/ocLazyLoad.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ocLazyLoad.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ocLazyLoad.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ocLazyLoad.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ocLazyLoad.require.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ocLazyLoad.require.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ocLazyLoad.require.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ocLazyLoad.require.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oclazyload",
"version": "1.0.1",
"version": "1.0.2",
"description": "Load modules on demand (lazy load) with angularJS",
"main": "dist/ocLazyLoad.js",
"author": "Olivier Combe <olivier.combe@gmail.com>",
Expand Down Expand Up @@ -58,4 +58,4 @@
"semver": "~4.3.6",
"streamqueue": "~0.1.3"
}
}
}

0 comments on commit e1a3043

Please sign in to comment.