diff options
author | Thomas Park <thomas@thomaspark.co> | 2015-11-24 18:28:55 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2015-11-24 18:28:55 -0500 |
commit | 3111a85f81a3fb53c7e1259d4a7d298b58d5ccfc (patch) | |
tree | 693196431854c805677a065c4e8f31abc7f19c19 /bower_components/html5shiv/dist/html5shiv.js | |
parent | ffda96bcf751dee3c70d66507de349bdb2220224 (diff) |
update bootstrap to 3.3.6
Diffstat (limited to 'bower_components/html5shiv/dist/html5shiv.js')
-rw-r--r-- | bower_components/html5shiv/dist/html5shiv.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/bower_components/html5shiv/dist/html5shiv.js b/bower_components/html5shiv/dist/html5shiv.js index 77dace49..45ea723d 100644 --- a/bower_components/html5shiv/dist/html5shiv.js +++ b/bower_components/html5shiv/dist/html5shiv.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 || {}; @@ -121,7 +121,7 @@ * returns a shived element for the given nodeName and document * @memberOf html5 * @param {String} nodeName name of the element - * @param {Document} ownerDocument The context document. + * @param {Document|DocumentFragment} ownerDocument The context document. * @returns {Object} The shived element. */ function createElement(nodeName, ownerDocument, data){ @@ -319,4 +319,8 @@ // shiv the document shivDocument(document); -}(this, document)); + if(typeof module == 'object' && module.exports){ + module.exports = html5; + } + +}(typeof window !== "undefined" ? window : this, document)); |