]> source.dussan.org Git - vaadin-framework.git/commitdiff
Change code annotation to JavaScript pr9959/r17
authorErik Lumme <erik@vaadin.com>
Tue, 12 Sep 2017 08:02:55 +0000 (11:02 +0300)
committerErik Lumme <erik@vaadin.com>
Tue, 12 Sep 2017 08:02:55 +0000 (11:02 +0300)
documentation/articles/IntegratingAJavaScriptComponent.asciidoc

index 7762f14e0426a9c00622889291a63e86d7505070..88cb679cc7be64726fdd8a4bba695f937941a39e 100644 (file)
@@ -48,7 +48,7 @@ state of a normal GWT component.
 [source,java]
 ....
 public class FlotState extends JavaScriptComponentState {
-    public List<List<List<Double>>> series = new ArrayList<List<List<Double>>>();
+  public List<List<List<Double>>> series = new ArrayList<List<List<Double>>>();
 }
 ....
 
@@ -82,7 +82,7 @@ conversion between server-side Java values and client-side JavaScript
 values. `double[][][]` in Java would give the same JavaScript structure,
 but it was not used here as it gives less flexibility in the Java code.
 
-[source,java]
+[source,javascript]
 ....
 window.com_example_Flot = function() {
   var element = $(this.getElement());