Fix broken preload expiration function.

>:(
This commit is contained in:
Max Goodman
2013-05-07 16:28:21 -07:00
parent b12cafd377
commit 352eb675db

View File

@@ -4,7 +4,7 @@ r.preload = {
data: {},
isExpired: function() {
return new Date() - this.timestamp < this.maxAge
return new Date() - this.timestamp > this.maxAge
},
set: function(data) {