mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
Accept modifications where the value evaluates to false
This commit is contained in:
parent
3c651a38e0
commit
e6cfe7a505
@ -481,7 +481,7 @@ var et2_widget = Class.extend({
|
||||
if(_target.id && this.getArrayMgr("modifications").getEntry(_target.id))
|
||||
{
|
||||
var mod = this.getArrayMgr("modifications").getEntry(_target.id);
|
||||
if(mod.options) attrValue = _attrsObj[i].value = mod.options;
|
||||
if(typeof mod.options != "undefined") attrValue = _attrsObj[i].value = mod.options;
|
||||
}
|
||||
// Check for entire legacy options passed in content
|
||||
if(attrValue.charAt(0) == '@' && attrValue.indexOf(',') == -1)
|
||||
|
Loading…
Reference in New Issue
Block a user