diff options
author | friendica <info@friendica.com> | 2012-07-09 22:48:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-09 22:48:51 -0700 |
commit | 5355193b6342910ec69ec172846027ac9353d2b3 (patch) | |
tree | 9ebe1cfea820b8ce73756f78cd6b2361a349bb4f /view/theme/facepark/theme.php | |
parent | 4b066e04f619c2c6f8d383daee9ceab49f39acdc (diff) | |
download | volse-hubzilla-5355193b6342910ec69ec172846027ac9353d2b3.tar.gz volse-hubzilla-5355193b6342910ec69ec172846027ac9353d2b3.tar.bz2 volse-hubzilla-5355193b6342910ec69ec172846027ac9353d2b3.zip |
theme cleanup
Diffstat (limited to 'view/theme/facepark/theme.php')
-rw-r--r-- | view/theme/facepark/theme.php | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/view/theme/facepark/theme.php b/view/theme/facepark/theme.php deleted file mode 100644 index 701fb1349..000000000 --- a/view/theme/facepark/theme.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php -$a->theme_info = array(); - -$a->page['htmlhead'] .= <<< EOT -<script> -$(document).ready(function() { - -$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); - -$('.group-edit-icon').hover( - function() { - $(this).addClass('icon'); $(this).removeClass('iconspacer');}, - function() { - $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); - -$('.sidebar-group-element').hover( - function() { - id = $(this).attr('id'); - $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');}, - - function() { - id = $(this).attr('id'); - $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');} - ); - - -$('.savedsearchdrop').hover( - function() { - $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');}, - function() { - $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); - -$('.savedsearchterm').hover( - function() { - id = $(this).attr('id'); - $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');}, - - function() { - id = $(this).attr('id'); - $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');} - ); - -}); - - -</script> -EOT; |