aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/mootools/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'example/templates/mootools/index.html')
-rw-r--r--example/templates/mootools/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html
new file mode 100644
index 0000000..1dac10c
--- /dev/null
+++ b/example/templates/mootools/index.html
@@ -0,0 +1,19 @@
+<html>
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <title>MooTools Test</title>
+ <style>
+ .hide {display:none;}
+ </style>
+ <script type="text/javascript" charset="utf-8" src="{{ MEDIA_URL }}/js/mootools.js"></script>
+ <script type="text/javascript" charset="utf-8">
+ window.addEvent('domready', function() {
+ $$('p.hide').setStyle('display', 'block');
+ });
+ </script>
+</head>
+<body>
+ <h1>MooTools Test</h1>
+ <p class="hide">If you see this, MooTools is working.</p>
+</body>
+</html>