diff options
author | Ev Bogue <ev@evbogue.com> | 2019-12-26 16:23:37 -0600 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-12-26 16:23:37 -0600 |
commit | 7b410ab4c605928ce72d9c07f4784954999d9dda (patch) | |
tree | 7d4323f2b2212ec19dd4023a7906e0e55255fe6d | |
parent | 047b88d8deb5b4338b4162f519de7ef570d98ae2 (diff) |
temporarily disable image cache
-rw-r--r-- | bog.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -104,9 +104,9 @@ function getImage (id, keys, classList) { } localforage.getItem('image:' + id).then(cache => { - if (cache) { - return image.src = cache - } else { + //if (cache) { + // return image.src = cache + //} else { bog().then(log => { if (log) { for (var i = 0; i < log.length; i++) { @@ -124,7 +124,7 @@ function getImage (id, keys, classList) { } } }) - } + //} }) return image } |