[Yanel-commits] rev 22734 - public/yanel/trunk/src/webapp

michi at wyona.com michi at wyona.com
Fri Feb 16 15:38:42 CET 2007


Author: michi
Date: 2007-02-16 15:38:41 +0100 (Fri, 16 Feb 2007)
New Revision: 22734

Added:
   public/yanel/trunk/src/webapp/toolbar.html
Log:
from scratch toolbar started

Added: public/yanel/trunk/src/webapp/toolbar.html
===================================================================
--- public/yanel/trunk/src/webapp/toolbar.html	2007-02-16 14:38:17 UTC (rev 22733)
+++ public/yanel/trunk/src/webapp/toolbar.html	2007-02-16 14:38:41 UTC (rev 22734)
@@ -0,0 +1,39 @@
+<html>
+<head>
+<title>Yanel Toolbar</title>
+
+<script>
+function expand (menu_id, event) {
+alert("Expand: " + menu_id);
+}
+
+function collapse (menu_id) {
+alert("Collapse: " + menu_id);
+}
+</script>
+
+<script>
+menu_file = [
+]
+</script>
+</head>
+<body>
+
+
+<table id="toolbar">
+<tr>
+<td>
+<span onmouseover="expand('file_menu',event)" onmouseout="collapse('file_menu')">File</span>
+</td>
+<td>
+<span onmouseover="expand('edit_menu',event)" onmouseout="collapse('edit_menu')">Edit</span>
+</td>
+<td>
+<span onmouseover="expand('help_menu',event)" onmouseout="collapse('help_menu')">Help</span>
+</td>
+</tr>
+</table>
+
+BODY
+</body>
+</html>




More information about the Yanel-commits mailing list