Make addition of box slightly prettier. I'm crazy like that.
authorRobert Konigsberg <konigsberg@google.com>
Sat, 4 Jun 2011 02:18:55 +0000 (22:18 -0400)
committerRobert Konigsberg <konigsberg@google.com>
Sat, 4 Jun 2011 02:18:55 +0000 (22:18 -0400)
tests/unboxed-spark.html

index 06e10bb..a4692cf 100644 (file)
@@ -19,7 +19,7 @@
   </head>
   <body>
     <p>This shows dygraphs without any boxlike elements (i.e. axes or grids):</p>
-    <div id="div_g" style="width:600px; height:300px;"></div>
+    <div id="div_g" style="width:600px; height:300px; border:1px solid white;"></div>
 
     <script type="text/javascript">
       var show_box = false;
@@ -35,7 +35,7 @@
 
       function toggleBox(btn) {
         show_box = !show_box;
-        document.getElementById("div_g").style.border = show_box ? '1px solid black' : '';
+        document.getElementById("div_g").style.border = show_box ? '1px solid black' : '1px solid white';
         if (show_box) {
           btn.innerHTML = 'Hide box';
         } else {