diff options
Diffstat (limited to 'bower_components/html5shiv/dist/html5shiv-printshiv.js')
-rw-r--r-- | bower_components/html5shiv/dist/html5shiv-printshiv.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bower_components/html5shiv/dist/html5shiv-printshiv.js b/bower_components/html5shiv/dist/html5shiv-printshiv.js index c2913b51..085708e7 100644 --- a/bower_components/html5shiv/dist/html5shiv-printshiv.js +++ b/bower_components/html5shiv/dist/html5shiv-printshiv.js @@ -1,10 +1,10 @@ /** -* @preserve HTML5 Shiv 3.7.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed */ ;(function(window, document) { /*jshint evil:true */ /** version */ - var version = '3.7.2'; + var version = '3.7.3'; /** Preset options */ var options = window.html5 || {}; @@ -517,4 +517,8 @@ // shiv for print shivPrint(document); -}(this, document)); + if(typeof module == 'object' && module.exports){ + module.exports = html5; + } + +}(typeof window !== "undefined" ? window : this, document)); |