mailr21038 - /website/head.html


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on October 10, 2013 - 10:39:
Author: bugman
Date: Thu Oct 10 10:39:44 2013
New Revision: 21038

URL: http://svn.gna.org/viewcvs/relax?rev=21038&view=rev
Log:
Added a javascript function for enabling a collapsible menu.

This will be used for the side menu.


Modified:
    website/head.html

Modified: website/head.html
URL: 
http://svn.gna.org/viewcvs/relax/website/head.html?rev=21038&r1=21037&r2=21038&view=diff
==============================================================================
--- website/head.html (original)
+++ website/head.html Thu Oct 10 10:39:44 2013
@@ -23,4 +23,18 @@
     })();
 
   </script>
+
+  <!--Collapsible menu JS -->
+  <script type="text/javascript">
+
+    function collapseMenu(object_id) {
+      if (!document.getElementById) return;
+
+      var obj = document.getElementById(object_id).style;
+      obj.display = (obj.display == 'block')?'none': 'block';
+    }
+
+  </script>
+
+
   <!-- End SSI head element -->




Related Messages


Powered by MHonArc, Updated Thu Oct 10 11:00:02 2013