]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed regression from [8516] "function eval must be called directly, and not by the...
authorArtur Signell <artur.signell@itmill.com>
Fri, 21 Aug 2009 11:18:36 +0000 (11:18 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 21 Aug 2009 11:18:36 +0000 (11:18 +0000)
svn changeset:8520/svn branch:6.1

src/com/vaadin/terminal/gwt/client/ApplicationConnection.java

index 1b9b3d899080bb18decdaab8e14493c6380687fa..02a46ef39ee0926563c408e2b82b60412db99c83 100755 (executable)
@@ -590,7 +590,7 @@ public class ApplicationConnection {
 
     private static native ValueMap parseJSONResponse(String jsonText)
     /*-{
-        return $wnd.eval('(' + jsonText + ')');
+        return eval('(' + jsonText + ')');
      }-*/;
 
     private void handleReceivedJSONMessage(Response response) {