notebook sync ok

This commit is contained in:
life
2015-02-19 22:39:05 +08:00
parent 968637ba89
commit a59c2fcadd
9 changed files with 74 additions and 960 deletions

19
node_modules/web.js generated vendored
View File

@@ -105,6 +105,25 @@ var Web = {
attachSynced: function(attachs, attach, noteId) {
var me = this;
me.Attach.attachSynced(attachs, attach, noteId);
},
syncProcess: function(type, title) {
var me = this;
me.Note.syncProcess('In sync ' + type + ': ' + title);
},
/*
syncNotebookFinish: function() {
var me = this;
me.Note.syncProcess('In sync notebooks...');
},
syncNoteFinish: function() {
var me = this;
me.Note.syncProcess('In sync notes...');
},
syncTagFinish: function() {
var me = this;
me.Note.syncProcess('In sync tags...');
}
*/
};
module.exports = Web;