mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Fix constant warnings about not found images when image was in nextmatch row and src was '' for the row
This commit is contained in:
parent
d28b1d2500
commit
5179794f15
@ -106,7 +106,7 @@ var et2_image = et2_baseWidget.extend([et2_IDetachedDOM],
|
||||
var manager = this.getArrayMgr("content");
|
||||
if(manager) {
|
||||
var src = manager.getEntry(_attrs["src"]);
|
||||
if (src)
|
||||
if (typeof src != "undefined")
|
||||
{
|
||||
if(typeof src == "object")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user