]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/theme.php
3e55b658a7adb22b7b661abacf6f72a2889e7e98
[friendica.git] / view / theme / duepuntozero / theme.php
1 <?php
2 $a->theme_info = array();
3
4 $a->page['htmlhead'] .= <<< EOT
5 <script>
6 $(document).ready(function() {
7
8 $('.group-edit-icon').hover(
9         function() {
10                 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
11         function() {
12                 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
13         );
14
15 $('.sidebar-group-element').hover(
16         function() {
17                 id = $(this).attr('id');
18                 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
19
20         function() {
21                 id = $(this).attr('id');
22                 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
23         );
24 });
25 </script>
26 EOT;