提交 c96516f6 编写于 作者: 蔡祥熠

Merge branch 'fix/File_click' into 'wrdp'

Merge of fix/File_click 取消点击资源文件图标提示允许拷贝 to wrdp

See merge request o2oa/o2oa!6078
......@@ -256,6 +256,12 @@ MWF.xApplication.cms.ColumnManager.FileExplorer.File = new Class({
this.node.destroy();
if (callback) callback();
}.bind(this));
},
selected: function(){
if (this.deleteMode) this.deleteItem();
this.isSelected = true;
this.node.setStyles(this.explorer.css.itemNode_selected);
this.explorer.selectMarkItems.push(this);
}
});
......
......@@ -282,6 +282,12 @@ MWF.xApplication.process.ProcessManager.FileExplorer.File = new Class({
}.bind(this));
}
}
},
selected: function(){
if (this.deleteMode) this.deleteItem();
this.isSelected = true;
this.node.setStyles(this.css.itemNode_selected);
this.explorer.selectMarkItems.push(this);
}
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册