Skip to content

Commit

Permalink
Adjustments for 1.2 release candidate.
Browse files Browse the repository at this point in the history
  • Loading branch information
KuraFire committed Apr 30, 2010
1 parent 5f767e8 commit 238043b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions modernizr.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
* Modernizr JavaScript library 1.2pre
* Modernizr JavaScript library 1.2
* http://modernizr.com/
*
* Copyright (c) 2009-2010 Faruk Ates - http://farukat.es/
* Licensed under the MIT license.
* Dual-licensed under the BSD and MIT licenses.
* http://modernizr.com/license/
*
* Featuring major contributions by
Expand All @@ -22,16 +22,16 @@
* if-conditionals in CSS styling, making it easily to have fine
* control over the look and feel of your website.
*
* @author Faruk Ates
* @copyright (2009-2010) Faruk Ates.
* @author Faruk Ates
* @copyright (c) 2009-2010 Faruk Ates.
*
* @contributor Paul Irish
* @contributor Ben Alman
*/

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

var version = '1.2pre',
var version = '1.2',

ret = {},

Expand Down
2 changes: 1 addition & 1 deletion test.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<script>
window.localStorage && document.write('localStorage.getItem("modernizr1.2pre") is: ' + (!!localStorage.getItem('modernizr1.2pre') ? 'PRESENT' : 'EMPTY') + '<br>');
window.localStorage && document.write('localStorage.getItem("modernizr1.2") is: ' + (!!localStorage.getItem('modernizr1.2') ? 'PRESENT' : 'EMPTY') + '<br>');

var start = +new Date();
</script>
Expand Down

0 comments on commit 238043b

Please sign in to comment.