diff --git a/attachments/script/jquery.couch2.js b/attachments/script/jquery.couch2.js index 15b14520..e5f768db 100644 --- a/attachments/script/jquery.couch2.js +++ b/attachments/script/jquery.couch2.js @@ -2,8 +2,6 @@ window.couch = {}; - var cache = {}; - var defaults = { headers: {"Accept":"application/json"}, dataType:"json", @@ -17,10 +15,6 @@ return $.ajax(ajaxOpts).promise(); } - couch.clearCache = function() { - cache = {}; - }; - couch.get = function(url) { return couch.request({url:url, type:'GET'}); };