Skip to content

Commit

Permalink
Merge pull request #574 from uw-it-aca/work/google-shared-drives-mikes
Browse files Browse the repository at this point in the history
jshint
  • Loading branch information
mikeseibel authored May 20, 2024
2 parents 00cb780 + 50af284 commit 041a38a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions endorsement/static/endorsement/js/notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ var Notify = (function () {
div_class,
fade,
src = $('#notify_template').html(),
template = Handlebars.compile(src);
template = Handlebars.compile(src),
html = template({message: msg, notify_class: div_class});

if (_queue.length) {
msg = _queue[0].msg;
Expand All @@ -46,9 +47,7 @@ var Notify = (function () {
return;
}

var html = template({message: msg, notify_class: div_class}),
$notify = $(html);

$notify = $(html);
$notify.appendTo($('body'));
$notify
.css('top', $('.tab.active').offset().top + 'px')
Expand Down

0 comments on commit 041a38a

Please sign in to comment.