initial import

This commit is contained in:
Alchemy
2011-02-16 16:09:48 +01:00
parent 399a584b6f
commit 339d23c06d
5539 changed files with 2028637 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body class="yui-skin-sam">
<p><a href="#" id="loglink">Click here</a> to log a simple message.</p>
<script type="text/javascript" src="../../build/yuiloader/yuiloader.js"></script>
<script type="text/javascript">
var loader = new YAHOO.util.YUILoader();
loader.insert({
require: ['fonts','dragdrop','logger'],
base: '../../build/',
onSuccess: function(loader) {
YAHOO.util.Event.addListener(YAHOO.util.Dom.get("loglink"), "click", function(e) {
YAHOO.util.Event.stopEvent(e);
YAHOO.log("This is a simple log message.");
});
// Put a LogReader on your page
this.myLogReader = new YAHOO.widget.LogReader();
}
});
</script>
</body>
</html>