Hiding "copy".
authorRobert Konigsberg <konigsberg@google.com>
Sun, 8 Jan 2012 07:16:18 +0000 (02:16 -0500)
committerRobert Konigsberg <konigsberg@google.com>
Sun, 8 Jan 2012 07:16:18 +0000 (02:16 -0500)
experimental/palette/index.html
experimental/palette/palette.js

index 1be363b..b3a3218 100644 (file)
@@ -47,9 +47,9 @@
               <li>You will see that the prototype function body is
               <code>function(e, x, points){ }</code>. Paste in this
               replacement function:<p/>
-              <code>function(e, x){ var elem =
-                document.getElementById("messages"); elem.innerHTML =
-                elem.innerHTML + x + "&lt;br&gt;"; }</code></li>
+              <code>function(e, x){<br/>&nbsp;&nbsp;var elem =
+                document.getElementById("messages");<br/>&nbsp;&nbsp;elem.innerHTML =
+                elem.innerHTML + x + "&lt;br&gt;";<br/>}</code></li>
               <li>Click the <em>OK</em> button. The <em>clickCallback</em>
               button now says <code>defined</code> instead of <code>not defined</code>.</li>
               <li>Click anywhere on the graph. The x-value will appear on the
index ba55bc9..1830315 100644 (file)
@@ -63,12 +63,14 @@ Palette.prototype.create = function(document, parentElement) {
     palette.onchange();
   };
 
+  // CURRENTLY HIDDEN.
   var tmp = Palette.createChild("button", Palette.createChild("span", row));
   tmp.innerText = "Copy"
   tmp.onclick = function() {
     var textarea = new TextArea();
-    textarea.show("Now is the time for all good men\nto come to the aid of their country");
+    textarea.show("header", "Now is the time for all good men\nto come to the aid of their country");
   };
+  tmp.style.display = "none";
 
   for (var opt in opts) {
     try {