From 3ac7c4e8599266aba69bf521c7ba94393df3c728 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 22 May 2012 21:20:31 -0700 Subject: keep FB out of private notes --- view/theme/slackr/theme.php | 1 + 1 file changed, 1 insertion(+) (limited to 'view/theme/slackr/theme.php') diff --git a/view/theme/slackr/theme.php b/view/theme/slackr/theme.php index 99e061a2f..516132f5c 100644 --- a/view/theme/slackr/theme.php +++ b/view/theme/slackr/theme.php @@ -45,6 +45,7 @@ function cmtBbClose(id) { } $(document).ready(function() { + $('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('.group-edit-icon').hover( -- cgit v1.2.3 From 6c78d42050062b74fe38ca487a0cf237b6735e1b Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 23 May 2012 18:20:24 -0700 Subject: slackr: hide calendar when posting --- view/theme/slackr/theme.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'view/theme/slackr/theme.php') diff --git a/view/theme/slackr/theme.php b/view/theme/slackr/theme.php index 516132f5c..988700860 100644 --- a/view/theme/slackr/theme.php +++ b/view/theme/slackr/theme.php @@ -43,8 +43,16 @@ function cmtBbOpen(id) { function cmtBbClose(id) { $(".comment-edit-bb-" + id).hide(); } + +function hidecal() { + if(editor) return; + $('.fc').hide(); +} + $(document).ready(function() { + $("#profile-jot-text").focus(hidecal); + $("#profile-jot-text").click(hidecal); $('html').click(function() { $("#nav-notifications-menu" ).hide(); }); -- cgit v1.2.3