|
|
@ -207,14 +207,15 @@ public class HtmlHelper {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (linked)
|
|
|
|
if (linked)
|
|
|
|
div.appendChild(img);
|
|
|
|
div.appendChild(img.clone());
|
|
|
|
else {
|
|
|
|
else {
|
|
|
|
Element a = document.createElement("a");
|
|
|
|
Element a = document.createElement("a");
|
|
|
|
a.attr("href", uri.toString());
|
|
|
|
a.attr("href", uri.toString());
|
|
|
|
a.appendChild(img.clone());
|
|
|
|
a.appendChild(img.clone());
|
|
|
|
div.appendChild(a);
|
|
|
|
div.appendChild(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
|
|
|
|
div.appendChild(img.clone());
|
|
|
|
|
|
|
|
|
|
|
|
if (!TextUtils.isEmpty(alt)) {
|
|
|
|
if (!TextUtils.isEmpty(alt)) {
|
|
|
|
div.appendElement("br");
|
|
|
|
div.appendElement("br");
|
|
|
|