source: extensions/floOs/theme/nothing/themeconf.inc.php @ 3618

Last change on this file since 3618 was 3618, checked in by flop25, 15 years ago

update global with pwg 2.0.3

File size: 956 bytes
Line 
1<?php
2$themeconf = array(
3  'template' => 'floOS',
4  'theme' => 'nothing',
5  'template_dir' => 'template/floOS',
6  'icon_dir' => 'template/floOS/icon',
7  'admin_icon_dir' => 'template/floOS/icon/admin',
8  'mime_icon_dir' => 'template/floOS/icon/mimetypes/',
9  'local_head' => '  <script type="text/javascript" src="template-common/lib/jquery.js"></script>
10  <script type="text/javascript">
11jQuery(document).ready(function(){
12        $(".titre_acordeon").click(function() {
13                $(this).next().toggle("medium");
14        }).next().hide();
15});
16jQuery(document).ready(function(){
17        $(".titre_acordeon_0").click(function() {
18                $(this).next().toggle("medium");
19        }).next().show();
20});
21 
22  </script>',
23);
24/*
25  jQuery().ready(function(){
26    jQuery(\'#menubar\').accordion({
27      header: ".titre_acordeon",
28      event: "mouseover",
29      navigation: true,
30     active: 0,
31     alwaysOpen: false,
32     autoHeight: false
33            });
34  });
35*/
36?>
Note: See TracBrowser for help on using the repository browser.