Skip to content

Commit

Permalink
refs #4179 fade notifications in
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Oct 27, 2013
1 parent faf969b commit 38a6c59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/CoreHome/javascripts/notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@
template += message;
template += '</div>';

var $notificationNode = $(template).appendTo('#notificationContainer');
var $notificationNode = $(template).appendTo('#notificationContainer').hide();
$('#notificationContainer').append($notificationNode);
$notificationNode.fadeIn(1000);

if ('persistent' == options.type) {
addPersistentEvent($notificationNode);
Expand Down

0 comments on commit 38a6c59

Please sign in to comment.