Skip to content

Commit

Permalink
[#8537] small update to notifications function to set active
Browse files Browse the repository at this point in the history
  • Loading branch information
webjunkie01 committed Mar 11, 2024
1 parent ba99556 commit 15ff11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Allura/allura/public/nf/js/jquery.notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

function displayNotification(el, o){
var selector = '.' + o.newClass + '.' + o.messageClass;
$(selector).removeClass(o.newClass).addClass(o.activeClass);
$(selector).addClass(o.activeClass);
$(selector).fadeIn(500);
if (!$(selector).hasClass(o.persistentClass)) {
var timer = $(selector).attr('data-timer') || o.timer;
Expand Down

0 comments on commit 15ff11b

Please sign in to comment.