]> source.dussan.org Git - vaadin-core.git/commitdiff
Update README.md
authorJouni Koivuviita <jouni@jouni.me>
Thu, 3 Dec 2015 13:32:14 +0000 (15:32 +0200)
committerJouni Koivuviita <jouni@jouni.me>
Thu, 3 Dec 2015 13:32:14 +0000 (15:32 +0200)
Added some more comments to the example to illustrate that there are more elements to use than just vaadin-grid.

README.md

index 7d5b16d2d60bcb3b1613ef1972cc8e9d113df58d..544decb77afc51f075683aed37efe08f33441367 100644 (file)
--- a/README.md
+++ b/README.md
@@ -91,6 +91,7 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a
   </head>
   <body>
 
+    <!-- Use the elements, for instance vaadin-grid -->
     <vaadin-grid selection-mode="multi">
       <table>
         <!-- Define the columns -->
@@ -118,6 +119,8 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a
       // use to determine when the custom elements are ready to be used
       document.addEventListener("WebComponentsReady", function () {
 
+        // Configure vaadin-grid to show data
+        
         // Reference to the grid element
         var grid = document.querySelector("vaadin-grid");