Chris Zheng
unread,Oct 16, 2012, 7:18:16 AM10/16/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to amber...@googlegroups.com, Chris Zheng
This is my entire file for the hello example.
<!DOCTYPE html>
<html>
<head>
<title>My First Amber Project</title>
<script src="/javascript/amber.js" type="text/javascript"></script>
<script type="text/javascript">
loadAmber({
files: [],
prefix: '/javascript',
ready: function() {
smalltalk.Browser._open();
}});
</script>
</head>
<body onload=''>
<article>
<h1>My First Amber Project</h1>
<button onclick="smalltalk.Browser._open()">class browser</button>
<button id="sayHello">say hello</button>
</article>
</body>
</html>
it seems to still try to load from the js directory.