Skip to content

Commit

Permalink
Merge pull request #170 from Fakundo/browserify-window
Browse files Browse the repository at this point in the history
Pass 'window' to wrap functions for browserify support
  • Loading branch information
Alexander Farkas committed Mar 2, 2015
2 parents bf76c5f + f2557ce commit 5a8a9a9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1 +1,2 @@
.DS_Store
.DS_Store
node_modules
2 changes: 1 addition & 1 deletion dist/html5shiv-printshiv.js
Expand Up @@ -517,4 +517,4 @@
// shiv for print
shivPrint(document);

}(this, document));
}(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
Expand Up @@ -319,4 +319,4 @@
// shiv the document
shivDocument(document);

}(this, document));
}(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
Expand Up @@ -517,4 +517,4 @@
// shiv for print
shivPrint(document);

}(this, document));
}(typeof window !== "undefined" ? window : this, document));
2 changes: 1 addition & 1 deletion src/html5shiv.js
Expand Up @@ -319,4 +319,4 @@
// shiv the document
shivDocument(document);

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

0 comments on commit 5a8a9a9

Please sign in to comment.