aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy-dark/theme.php
diff options
context:
space:
mode:
authorSimon <simon@kisikew.org>2012-03-16 10:35:19 -0700
committerSimon <simon@kisikew.org>2012-03-16 10:35:19 -0700
commit925b9c5b9ce83825f5003f88d3afbdcb620c28fc (patch)
tree12b873f7c8a507b4d348369079dd5e3c614272ec /view/theme/dispy-dark/theme.php
parent28f941193d75ca12f4cb2a38a1c60e60ad10f2a6 (diff)
parent7b15f27ba48f5a1b0e24290379e2524796776803 (diff)
downloadvolse-hubzilla-925b9c5b9ce83825f5003f88d3afbdcb620c28fc.tar.gz
volse-hubzilla-925b9c5b9ce83825f5003f88d3afbdcb620c28fc.tar.bz2
volse-hubzilla-925b9c5b9ce83825f5003f88d3afbdcb620c28fc.zip
Merge pull request #140 from simonlnu/master
weee, dispys get another update
Diffstat (limited to 'view/theme/dispy-dark/theme.php')
-rw-r--r--view/theme/dispy-dark/theme.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php
index c0611ce83..0134b1f91 100644
--- a/view/theme/dispy-dark/theme.php
+++ b/view/theme/dispy-dark/theme.php
@@ -64,7 +64,7 @@ $(document).ready(function() {
$('#drop-' + id).addClass('iconspacer'); }
);
- // notifications
+ // click outside notifications menu closes it
$('html').click(function() {
$('#nav-notifications-linkmenu').removeClass('selected');
document.getElementById("nav-notifications-menu").style.display = "none";
@@ -74,6 +74,7 @@ $(document).ready(function() {
event.stopPropagation();
});
+ // main function in toolbar functioning
function toggleToolbar() {
if ( $('#nav-floater').is(':visible') ) {
$('#nav-floater').slideUp('fast');
@@ -87,15 +88,20 @@ $(document).ready(function() {
});
}
};
+ // our trigger for the toolbar button
$('.floaterflip').click(function() {
toggleToolbar();
return false;
});
+ // (attempt) to change the text colour in a top post
$('#profile-jot-text').focusin(function() {
$(this).css({color: '#eec'});
});
+ // make auto-complete work in more places
+ $(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl");
+
/* $('#profile-photo-wrapper').mouseover(function() {
$('.profile-edit-side-div').css({display: 'block'});
}).mouseout(function() {