incremental improvements

This commit is contained in:
Zach Prezkuta 2012-12-27 12:20:47 -07:00
parent 98c86d46d4
commit 659ae4ed04
28 changed files with 401 additions and 94 deletions

View file

@ -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();