mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 21:22:35 +01:00
fix Nevermind button
This commit is contained in:
parent
4dadec5ae9
commit
0b4301be9e
@ -166,7 +166,13 @@ $(document).ready(function() {
|
||||
// show popup
|
||||
del.addEventListener('click', toggleShow);
|
||||
// hide popup
|
||||
$popupText.find('.nvm').click(toggleShow);
|
||||
$popupText.find('.nvm').click(function(e){
|
||||
e.stopPropagation();
|
||||
toggleShow();
|
||||
});
|
||||
$popupText.click(function(e){
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
$('tbody').append(row); //add row to table
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user