This commit is contained in:
life
2015-02-10 01:03:56 +08:00
parent 40879a3e38
commit bfbdbda172

3
node_modules/note.js generated vendored
View File

@@ -1098,6 +1098,7 @@ var Note = {
// 同步内容, 图片, 附件 // 同步内容, 图片, 附件
// 异步操作 // 异步操作
// 延迟1s
syncContentAndImagesAndAttachs: function(note) { syncContentAndImagesAndAttachs: function(note) {
var me = this; var me = this;
setTimeout(function() { setTimeout(function() {
@@ -1121,7 +1122,7 @@ var Note = {
var attach = attachs[i]; var attach = attachs[i];
me.downloadAttachFromServer(note.NoteId, attach.ServerFileId, attach.FileId); me.downloadAttachFromServer(note.NoteId, attach.ServerFileId, attach.FileId);
} }
}, 500); }, 1000);
}, },
// 同步图片 // 同步图片