Skip to content

Commit 68cd2ba

Browse files
author
aFarkas
committed
fix commonjs undefined var (see #179)
1 parent 0a7343b commit 68cd2ba

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dist/html5shiv-printshiv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@
518518
shivPrint(document);
519519

520520
if(typeof module == 'object' && module.exports){
521-
module.exports = lazySizes;
521+
module.exports = html5;
522522
}
523523

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

dist/html5shiv-printshiv.min.js

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/html5shiv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
shivDocument(document);
321321

322322
if(typeof module == 'object' && module.exports){
323-
module.exports = lazySizes;
323+
module.exports = html5;
324324
}
325325

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

dist/html5shiv.min.js

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

src/html5shiv-printshiv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@
518518
shivPrint(document);
519519

520520
if(typeof module == 'object' && module.exports){
521-
module.exports = lazySizes;
521+
module.exports = html5;
522522
}
523523

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

src/html5shiv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
shivDocument(document);
321321

322322
if(typeof module == 'object' && module.exports){
323-
module.exports = lazySizes;
323+
module.exports = html5;
324324
}
325325

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

0 commit comments

Comments
 (0)