Enhance-Multiple messages display (#2702)
Store messages by mood so they can be grouped up change default mood to positive and add a default colour to catch messages with a wrong mood migrate settings so upgrading vs new is consistent
This commit is contained in:
@@ -75,11 +75,10 @@
|
||||
message_text.click(function() {
|
||||
var object = $(this);
|
||||
object.clearQueue().finish();
|
||||
object.css({height: '3em'});
|
||||
object.animate({height: '0', 'font-size': '0', 'border-bottom-width': '0'}, 1000).animate({opacity: 0});
|
||||
} );
|
||||
$("#messages_container").append(message_text);
|
||||
message_text.animate({height: '3em'}, 500).animate({opacity: 1}, 'fast').delay(delay).animate({height: '0', 'font-size': '0', 'border-bottom-width': '0'}, 1000).animate({opacity: 0});
|
||||
message_text.animate({opacity: 1}, 'fast').delay(delay).animate({height: '0', 'font-size': '0', 'border-bottom-width': '0'}, 1000).animate({opacity: 0});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user