Skip to content

Commit

Permalink
updating modernizr to 1.7pre. adding IEPP hooks for builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Jan 27, 2011
1 parent be9c058 commit 377a862
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions modernizr.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Modernizr v1.6
* Modernizr v1.7pre
* http://www.modernizr.com
*
* Developed by:
Expand Down Expand Up @@ -32,7 +32,7 @@

window.Modernizr = (function(window,document,undefined){

var version = '1.6',
var version = '1.7pre',

ret = {},

Expand Down Expand Up @@ -855,6 +855,7 @@ window.Modernizr = (function(window,document,undefined){
set_css( '' );
modElem = inputElem = null;

//>>BEGIN IEPP
// Enable HTML 5 elements for styling in IE.
// fyi: jscript version does not reflect trident version
// therefore ie9 in ie7 mode will still have a jScript v.9
Expand Down Expand Up @@ -942,6 +943,7 @@ window.Modernizr = (function(window,document,undefined){
);
})(window, document);
}
//>>END IEPP

// Assign private properties to the return object with prefix
ret._enableHTML5 = enableHTML5;
Expand All @@ -956,4 +958,4 @@ window.Modernizr = (function(window,document,undefined){

return ret;

})(this,this.document);
})(this,this.document);

0 comments on commit 377a862

Please sign in to comment.