mirror of
https://github.com/friendica/friendica
synced 2025-04-25 14:30:10 +00:00
incremental improvements
This commit is contained in:
parent
98c86d46d4
commit
659ae4ed04
28 changed files with 401 additions and 94 deletions
|
@ -29,10 +29,10 @@ $j(document).ready(function() {
|
|||
$j("#profile-jot-text").click(enableOnUser);
|
||||
|
||||
|
||||
$j('.nav-menu-link').hover(function() {
|
||||
showNavMenu($j(this).attr('rel'));
|
||||
$j('.nav-menu-list, .nav-menu-icon').hover(function() {
|
||||
showNavMenu($j(this).attr('point'));
|
||||
}, function() {
|
||||
hideNavMenu($j(this).attr('rel'));
|
||||
hideNavMenu($j(this).attr('point'));
|
||||
});
|
||||
|
||||
/* $j('html').click(function() { $j("#nav-notifications-menu" ).hide(); });*/
|
||||
|
@ -305,6 +305,13 @@ $j(function(){
|
|||
});
|
||||
|
||||
|
||||
function homeRedirect() {
|
||||
$j('html').fadeOut('slow', function(){
|
||||
window.location = baseurl + "/login";
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
if(typeof window.photoEdit != 'undefined') {
|
||||
|
||||
$j(document).keydown(function(event) {
|
||||
|
@ -616,8 +623,8 @@ function initEditor(cb){
|
|||
$j("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$j("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
'transitionIn' : 'none', //'elastic',
|
||||
'transitionOut' : 'none' //'elastic'
|
||||
});
|
||||
$j(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue