Prepare deployment

This commit is contained in:
benweet 2013-07-17 01:37:25 +01:00
parent 96312c9654
commit a522f3ada2
3 changed files with 3 additions and 3 deletions

View File

@ -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

2
js/main-min.js vendored
View File

@ -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) {

View File

@ -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.');
});