From: Andrew Dolgov Date: Wed, 11 Feb 2009 19:07:28 +0000 (+0300) Subject: offline: properly initialize localStore X-Git-Tag: 1.3.1~36 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=7bed756555831481383d7cd024bef6bd4bd466af;p=tt-rss.git offline: properly initialize localStore --- diff --git a/offline.js b/offline.js index 7ffbc39f..f20559f2 100644 --- a/offline.js +++ b/offline.js @@ -974,6 +974,9 @@ function init_gears() { if (window.google && google.gears) { localServer = google.gears.factory.create("beta.localserver"); store = localServer.createManagedStore("tt-rss"); + store.manifestUrl = "manifest.json"; + store.checkForUpdate(); + db = google.gears.factory.create('beta.database'); db.open('tt-rss');