Skip to content

Commit e1a3043

Browse files
committed
chore: bump to 1.0.2
1 parent c3fda90 commit e1a3043

13 files changed

Lines changed: 32 additions & 16 deletions

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<a name="1.0.2"></a>
2+
# 1.0.2 (2015-07-10)
3+
4+
5+
## Bug Fixes
6+
7+
- add extra condition to improve karma testing
8+
([f0c33aae](https://github.com/ocombe/ocLazyLoad/commit/f0c33aaea84511a276dd946dd48bfe2cb20d1e73))
9+
10+
11+
## Features
12+
13+
- add interoperability with CommonJS
14+
([b0536ad4](https://github.com/ocombe/ocLazyLoad/commit/b0536ad4104467922c36bcf55a8a072343d102bc))
15+
16+
117
<a name="1.0.1"></a>
218
# 1.0.1 (2015-06-01)
319

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.1",
3+
"version": "1.0.2",
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
@@ -71,7 +71,7 @@
7171
names[name] = true;
7272
append(document.getElementById(name));
7373
name = name.replace(':', '\\:');
74-
if (element[0].querySelectorAll) {
74+
if (typeof element[0] !== 'undefined' && element[0].querySelectorAll) {
7575
angular.forEach(element[0].querySelectorAll('.' + name), append);
7676
angular.forEach(element[0].querySelectorAll('.' + name + '\\:'), append);
7777
angular.forEach(element[0].querySelectorAll('[' + name + ']'), append);
File renamed without changes.

dist/ocLazyLoad.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.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.min.js.map

Lines changed: 1 addition & 1 deletion
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
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ocLazyLoad.require.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)