diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 15:21:01 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-28 15:21:01 +0200 |
commit | f86e909a82c372ff01222431a7084b4cc47a6e81 (patch) | |
tree | e3d3269ed5bb1fa08bcf4d6a229976defbda43b9 /view/theme/dispy-dark/theme.php | |
parent | 0f2a34c23b2da277af88bbd36c1871f3c58e6420 (diff) | |
parent | e894775a39920edc0e438364c818357ab809bace (diff) | |
download | volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.tar.gz volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.tar.bz2 volse-hubzilla-f86e909a82c372ff01222431a7084b4cc47a6e81.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'view/theme/dispy-dark/theme.php')
-rw-r--r-- | view/theme/dispy-dark/theme.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php index 4c938997b..cebe9eb4f 100644 --- a/view/theme/dispy-dark/theme.php +++ b/view/theme/dispy-dark/theme.php @@ -91,11 +91,13 @@ $(document).ready(function() { $('.floaterflip').css({ backgroundPosition: '-210px -60px' }); + $('.search-box').slideUp('fast'); } else { $('#nav-floater').slideDown('fast'); $('.floaterflip').css({ backgroundPosition: '-190px -60px' }); + $('.search-box').slideDown('fast'); } }; // our trigger for the toolbar button @@ -144,13 +146,17 @@ function dispydark_community_info() { } else { a_funct(); } - })();" ; + })();"; $aside['$fostitJS'] = $fostitJS; $url = $a->get_baseurl($ssl_state); $aside['$url'] = $url; $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl'); - $a->page['aside'] = replace_macros($tpl, $aside); + $a->page['aside_bottom'] = replace_macros($tpl, $aside); } +// aside on profile page +if ($a->argv[0] === "profile") { + dispydark_community_info(); +} |