Skip to content

Commit

Permalink
offline to applicationcache
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish authored and Modernizr committed Dec 6, 2009
1 parent 9aa111c commit 6819420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modernizr.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ window.Modernizr = (function(window,doc){
localStorage = 'localstorage',
sessionStorage = 'sessionstorage',
webWorkers = 'webworkers',
offline = 'offline',
applicationCache = 'applicationcache',

// list of property values to set for css tests. see ticket #21
setProperties = ' -o- -moz- -ms- -webkit- '.split(' '),
Expand Down Expand Up @@ -466,7 +466,7 @@ window.Modernizr = (function(window,doc){
return !!window.Worker;
};

tests[offline] = function() {
tests[applicationCache] = function() {
return !!window.applicationCache;
};

Expand Down

0 comments on commit 6819420

Please sign in to comment.