<- sync tag ok

This commit is contained in:
life
2015-02-07 00:32:22 +08:00
parent 19eb994845
commit 68c668514b
7 changed files with 219 additions and 37 deletions

9
node_modules/web.js generated vendored
View File

@@ -23,6 +23,15 @@ var Web = {
updateTagCount: function(tag) {
var me = this;
me.Tag.updateTagCount(tag);
},
//
addOrDeleteTagFromSync: function(tagSyncInfo) {
var me = this;
var adds = tagSyncInfo.adds;
me.Tag.addTagsNav(adds);
var deletes = tagSyncInfo.deletes;
me.Tag.deleteTagsNav(deletes);
}
};
module.exports = Web;