Skip to content
Permalink
Browse files
Pass 'window' to wrap functions for browserify support
  • Loading branch information
fakundo committed Oct 22, 2014
1 parent 2cafa6d commit f2557ce
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
@@ -1 +1,2 @@
.DS_Store
.DS_Store
node_modules
@@ -517,4 +517,4 @@
// shiv for print
shivPrint(document);

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

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

@@ -319,4 +319,4 @@
// shiv the document
shivDocument(document);

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

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

@@ -517,4 +517,4 @@
// shiv for print
shivPrint(document);

}(this, document));
}(typeof window !== "undefined" ? window : this, document));
@@ -319,4 +319,4 @@
// shiv the document
shivDocument(document);

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

0 comments on commit f2557ce

Please sign in to comment.