mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
Remove click handler from read-only account widget
This commit is contained in:
parent
99023a7812
commit
0c220389fb
@ -692,12 +692,16 @@ var et2_selectAccount_ro = et2_link_string.extend([et2_IDetachedDOM],
|
||||
{
|
||||
this._super.apply(this, arguments);
|
||||
// Don't make it look like a link though
|
||||
jQuery('li',this.list).removeClass("et2_link et2_link_string");
|
||||
jQuery('li',this.list).removeClass("et2_link et2_link_string")
|
||||
// No clicks either
|
||||
.off();
|
||||
return;
|
||||
}
|
||||
|
||||
// Don't make it look like a link
|
||||
jQuery('li',this.list).removeClass("et2_link et2_link_string");
|
||||
jQuery('li',this.list).removeClass("et2_link et2_link_string")
|
||||
// No clicks either
|
||||
.off();
|
||||
|
||||
if(this.options.select_options && this.options.select_options[_value] || this.options.empty_label)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user