forked from extern/egroupware
fixed javascript error "undefined attribute length"
This commit is contained in:
parent
fb37282a2c
commit
017ffe5e15
@ -516,7 +516,7 @@ egw.extend("data_storage", egw.MODULE_GLOBAL, function (_app, _wnd) {
|
||||
dataRefreshUID: function (_uid) {
|
||||
if (typeof localStorage[_uid] === "undefined") return false;
|
||||
|
||||
if(registeredCallbacks[_uid].length > 0)
|
||||
if(typeof registeredCallbacks[_uid] !== "undefined" && registeredCallbacks[_uid].length > 0)
|
||||
{
|
||||
var _execId = registeredCallbacks[_uid][0].execId;
|
||||
// This widget ID MUST be a nextmatch, because the data call is to etemplate_widget_nexmatch
|
||||
|
Loading…
Reference in New Issue
Block a user