Fix constant warnings about not found images when image was in nextmatch row and src was '' for the row

This commit is contained in:
Nathan Gray 2014-01-09 11:43:15 +00:00
parent d28b1d2500
commit 5179794f15

View File

@ -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")
{