Hi there,

A mild annoyance: Sometimes the response flash covers other text on
the screen and, when you are doing lots of testing, you are
continually clicking it to make it go away.

My suggestion is to replace web2py_ajax.html line 36:

jQuery('.flash').click(function() { jQuery(this).fadeOut('slow');
return false; });

with:

jQuery('.flash').hide().fadeIn(2000).animate({opacity: 1.0},
2000).animate({ opacity: 'hide' }, 2000);

This makes the response.flash fade in and then fade out.  No clicking
required.

Thanks
Russell

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to