foam-framework
Version:
MVC metaprogramming framework
28 lines (27 loc) • 888 B
HTML
<html>
<head>
<script language="javascript" src="../core/bootFOAM.js"></script>
<script language="javascript" src="demos.js"></script>
<title>FOAM Tags</title>
</head>
<body>
<table><tr>
<td valign=top>
<foam id="timer" model="foam.util.Timer" onInit="this.start()"></foam>
<foam id="tt" model="foam.graphics.Turntable" onInit="this.time$ = $('timer').time$"></foam>
</td>
<td>
<foam id="dragon" model="foam.demos.graphics.Dragon" timer="#timer" width="950" height="1000"></foam>
</td>
</tr></table>
<!--
<h2>Test</h2>
<foam id="test1" model="UnitTest" description="A UnitTest embedded in DOM" onInit="this.test()">
<code>this.log('Here I am');</code>
<tests>
<foam model="UnitTest" description="A test"><code>this.log('Here again.');</code></foam>
</tests>
</foam>
-->
</body>
</html>