cooking up small example with view-bind-many

This commit is contained in:
Danny Yoo 2012-02-13 11:31:46 -05:00
parent 46c0ba5b7e
commit 55b74e277b
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
(define-resource view.html)
(define bound-view
(view-bind-many view.html
["red-button" "click" click]
["white-button" "click" click]
["blue-button" "click" click]
["orange-button" "click" click]
["green-button" "click" click]
["black-button" "click" click]))
(big-bang (initial-view bound-view)

View File

@ -0,0 +1,13 @@
<html>
<head>
</head>
<body>
<h1>This is a header</h1>
<input id="red-button" value="Red">
<input id="white-button" value="White">
<input id="blue-button" value="Blue">
<input id="orange-button" value="Orange">
<input id="green-button" value="Green">
<input id="black-button" value="Black">
<body>
</html>