From a522f3ada2d0a949a74dd9d6ac2ed87d8b3ae939 Mon Sep 17 00:00:00 2001 From: benweet Date: Wed, 17 Jul 2013 01:37:25 +0100 Subject: [PATCH] Prepare deployment --- cache.manifest | 2 +- js/main-min.js | 2 +- js/providers/gdriveProvider.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cache.manifest b/cache.manifest index 7031550b..fc740555 100644 --- a/cache.manifest +++ b/cache.manifest @@ -1,5 +1,5 @@ CACHE MANIFEST -# Wed 17 Jul 2013 01:13:00 IST +# Wed 17 Jul 2013 01:37:24 IST CACHE: index.html diff --git a/js/main-min.js b/js/main-min.js index 51cbcc21..dd809dcf 100644 --- a/js/main-min.js +++ b/js/main-min.js @@ -14570,7 +14570,7 @@ function(e) { if (!e) { var n = c(t.id, t.etag, t.content, t.title), i = {}; i[n.syncIndex] = n; - var o = s.createFile(t.title, t.content, n); + var o = s.createFile(t.title, t.content, i); s.selectFile(o), r.onMessage('"' + t.title + '" created successfully on Google Drive.'); } }); else if ("open" == t.action) { diff --git a/js/providers/gdriveProvider.js b/js/providers/gdriveProvider.js index e2662b4e..59022e4e 100644 --- a/js/providers/gdriveProvider.js +++ b/js/providers/gdriveProvider.js @@ -257,7 +257,7 @@ define([ var syncAttributes = createSyncAttributes(file.id, file.etag, file.content, file.title); var syncLocations = {}; syncLocations[syncAttributes.syncIndex] = syncAttributes; - var fileDesc = fileMgr.createFile(file.title, file.content, syncAttributes); + var fileDesc = fileMgr.createFile(file.title, file.content, syncLocations); fileMgr.selectFile(fileDesc); extensionMgr.onMessage('"' + file.title + '" created successfully on Google Drive.'); });