From: Juho Nurminen Date: Mon, 3 Feb 2014 15:18:45 +0000 (+0200) Subject: Changed getAbsoluteUrl to use the correct escaping method (#13311) X-Git-Tag: 7.1.12~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e680b8f55fadd00fc2a738296d44390eba322e32;p=vaadin-framework.git Changed getAbsoluteUrl to use the correct escaping method (#13311) Change-Id: I84cece7ae1c8ede0b77b82d0f84d6550e77af65b --- diff --git a/client/src/com/vaadin/client/Util.java b/client/src/com/vaadin/client/Util.java index 55d3d13c19..aae3dd5458 100644 --- a/client/src/com/vaadin/client/Util.java +++ b/client/src/com/vaadin/client/Util.java @@ -1343,7 +1343,8 @@ public class Util { divElement.getStyle().setDisplay(Display.NONE); RootPanel.getBodyElement().appendChild(divElement); - divElement.setInnerHTML(""); + divElement.setInnerHTML(""); AnchorElement a = divElement.getChild(0).cast(); String href = a.getHref();