mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-08 23:18:39 +03:00
fix Nevermind button
This commit is contained in:
@@ -166,7 +166,13 @@ $(document).ready(function() {
|
|||||||
// show popup
|
// show popup
|
||||||
del.addEventListener('click', toggleShow);
|
del.addEventListener('click', toggleShow);
|
||||||
// hide popup
|
// 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
|
$('tbody').append(row); //add row to table
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user