diff --git a/core/code/portal_detail.js b/core/code/portal_detail.js index 714da9217..eeb8b9959 100644 --- a/core/code/portal_detail.js +++ b/core/code/portal_detail.js @@ -21,6 +21,10 @@ window.portalDetail.get = function(guid) { return cache.get(guid); } +window.portalDetail.store = function (guid, dict, freshtime) { + return cache.store(guid, dict, freshtime); +}; + window.portalDetail.isFresh = function(guid) { return cache.isFresh(guid); }