Bladeren bron

debug output

me@helium 8 jaren geleden
bovenliggende
commit
1667f19674
2 gewijzigde bestanden met toevoegingen van 6 en 0 verwijderingen
  1. 1 0
      static/index.html
  2. 5 0
      static/index.js

+ 1 - 0
static/index.html

@@ -24,6 +24,7 @@
             </select>
         </p>
         <input type='checkbox' id='check1'>
+        <pre id='state' style='background-color: lightgray;'></pre>
         <script src="index.js"></script>
     </body>
 </html>

+ 5 - 0
static/index.js

@@ -66,4 +66,9 @@ var $s = nbInit({
     p1: "para"
 });
 
+document.onchange = function(){
+    $s.state  = "";
+    $s.state  = JSON.stringify($s, null, 4);
+}
+