提交 48330034 编写于 作者: U unknown

修复会议管理附件样式错乱的问题

上级 dd4c9fff
......@@ -1655,8 +1655,14 @@ MWF.xApplication.Meeting.MeetingTooltip.AttachmentMin = new Class({
Extends : MWF.widget.AttachmentController.AttachmentMin,
setEvent: function(){
this.node.addEvents({
"mouseover": function(){if (!this.isSelected) this.node.setStyles(this.css["minAttachmentNode_list_over"])}.bind(this),
"mouseout": function(){if (!this.isSelected) this.node.setStyles(this.css["minAttachmentNode_list"])}.bind(this),
"mouseover": function(){
var styleName = "attachmentNode_"+this.controller.options.listStyle+"_over";
if (!this.isSelected) this.node.setStyles(this.css[styleName])
}.bind(this),
"mouseout": function(){
var styleName = "attachmentNode_"+this.controller.options.listStyle;
if (!this.isSelected) this.node.setStyles(this.css[styleName])
}.bind(this),
"mousedown": function(e){this.selected(e);}.bind(this),
"click": function(e){this.downloadAttachment(e);}.bind(this)
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册