Lightweight controller library for JavaScript.
Go to file
George Michael Brower d14512b454 Changes to index
2011-01-28 14:19:26 -07:00
controllers Changes to index 2011-01-28 14:19:26 -07:00
demo Changes to index 2011-01-28 14:19:26 -07:00
.gitignore Added gitignore for textmate project 2011-01-23 13:30:07 -08:00
gui-bare.css Added gui-bare.css and split controllers into seperate files. 2011-01-24 12:38:52 -07:00
gui.css Added 'it gives you this' 2011-01-27 14:24:25 -07:00
gui.js Changes to index 2011-01-28 14:19:26 -07:00
gui.min.js Version 0.1 2011-01-26 19:45:34 -07:00
index.html Changes to index 2011-01-28 14:19:26 -07:00
README changed README 2011-01-26 19:58:33 -07:00

    var controllableObject = 
    	{	
    		numberProperty: 20,
    		anotherNumberProperty: 0,
    		textProperty: "a string",
    		booleanProperty: false,
    		functionProperty: function() {
    			alert("I am a function!");
    		}
    	};

    window.onload = function() {

    	GUI.start();

    	// Creates a number box
    	GUI.add(controllableObject, "numberProperty");

    	// Creates a slider (min, max)
    	GUI.add(controllableObject, "anotherNumberProperty", -100, 100);

    	// Creates a text field
    	GUI.add(controllableObject, "textProperty");

    	// Creates a checkbox
    	GUI.add(controllableObject, "booleanProperty");

    	// Creates a button
    	GUI.add(controllableObject, "functionProperty");

    }