Merge branch 'master' of github.com:jonobr1/GUI-DAT

This commit is contained in:
George Michael Brower 2011-01-24 13:11:39 -07:00
commit 0554c7ea98

View File

@ -1,31 +0,0 @@
<!doctype html>
<head>
<title>Draggable Button Prototype</title>
<script type = "text/javascript" src = "../controller.js"></script>
<script type = "text/javascript" src = "../gui.js"></script>
<script type = "text/javascript">
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");
}
</script>
</head>
<body>
</body>
</html>