Skip to content

Commit

Permalink
fix commonjs undefined var (see aFarkas#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed Mar 14, 2015
1 parent 0a7343b commit 68cd2ba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/html5shiv-printshiv.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
shivPrint(document);

if(typeof module == 'object' && module.exports){
module.exports = lazySizes;
module.exports = html5;
}

}(typeof window !== "undefined" ? window : this, document));
2 changes: 1 addition & 1 deletion dist/html5shiv-printshiv.min.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/html5shiv.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
shivDocument(document);

if(typeof module == 'object' && module.exports){
module.exports = lazySizes;
module.exports = html5;
}

}(typeof window !== "undefined" ? window : this, document));
2 changes: 1 addition & 1 deletion dist/html5shiv.min.js

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

2 changes: 1 addition & 1 deletion src/html5shiv-printshiv.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
shivPrint(document);

if(typeof module == 'object' && module.exports){
module.exports = lazySizes;
module.exports = html5;
}

}(typeof window !== "undefined" ? window : this, document));
2 changes: 1 addition & 1 deletion src/html5shiv.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
shivDocument(document);

if(typeof module == 'object' && module.exports){
module.exports = lazySizes;
module.exports = html5;
}

}(typeof window !== "undefined" ? window : this, document));

0 comments on commit 68cd2ba

Please sign in to comment.