diff --git a/README.md b/README.md index d0469c0..c3c2558 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -August 10, 2011 - -Hi everyone. Today we're moving this project over to Google Code. You can find it [here](http://code.google.com/p/dat-gui/). See you there! +We're back on github! The repo is here: +https://github.com/dataarts/dat.gui/ \- The Google Data Arts Team \ No newline at end of file diff --git a/index.html b/index.html index 11c4db5..3e5965e 100644 --- a/index.html +++ b/index.html @@ -3,400 +3,12 @@ dat.gui - + - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
+Please visit the dat.GUI github repo. - -
- -

dat.gui flag -

- -

dat.gui is a lightweight controller library for JavaScript. - It allows you to easily manipulate variables and fire functions on the fly. -

- - - -

Basic Usage

-
-<script type='text/javascript' src='DAT.GUI.min.js'></script>
-<script type='text/javascript'>
-
-window.onload = function() {
-
-   var fizzyText = new FizzyText('dat.gui');
-
-   var gui = new DAT.GUI();
-
-   // Text field
-   gui.add(fizzyText, 'message');
-
-   // Sliders with min + max
-   gui.add(fizzyText, 'maxSize').min(0.5).max(7);
-   gui.add(fizzyText, 'growthSpeed').min(0.01).max(1).step(0.05);
-   gui.add(fizzyText, 'speed', 0.1, 2, 0.05); // shorthand for min/max/step
-
-   gui.add(fizzyText, 'noiseStrength', 10, 100, 5);
-
-   // Boolean checkbox
-   gui.add(fizzyText, 'displayOutline');
-
-   // Fires a function called 'explode'
-   gui.add(fizzyText, 'explode').name('Explode!'); // Specify a custom name.
-
-};
-
-</script>
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- -