Files
9minutes/app/assets/javascripts/caching.js
T
2012-12-29 01:53:06 +01:00

9 lines
296 B
JavaScript

function cacheRequest(key, value)
{
value = (typeof value == "undefined" || typeof value == "boolean") ? false : value;
if(!value)
return (jQuery.data(document.body, key) == null) ? false : jQuery.data(document.body, key);
else
return jQuery.data(document.body, key, value);
}