forked from extern/egroupware
Wrap this into jQuery object, so remove() works in IE
This commit is contained in:
parent
b2254a4af3
commit
62019e52eb
@ -100,7 +100,7 @@ egw.extend('message', egw.MODULE_WND_LOCAL, function(_app, _wnd)
|
|||||||
.attr('id','egw_message')
|
.attr('id','egw_message')
|
||||||
.text(_msg)
|
.text(_msg)
|
||||||
.addClass(_type+'_message')
|
.addClass(_type+'_message')
|
||||||
.click(function() {this.remove();})
|
.click(function() {$j(this).remove();})
|
||||||
.css('position', 'absolute');
|
.css('position', 'absolute');
|
||||||
parent.prepend(msg_div);
|
parent.prepend(msg_div);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user