Lines 157-163
$(document).ready(function(){
Link Here
|
157 |
}); |
157 |
}); |
158 |
[% END %] |
158 |
[% END %] |
159 |
[% IF ( saved1 ) %] |
159 |
[% IF ( saved1 ) %] |
160 |
$(".confirmdelete").click(function(){ |
160 |
$("body").on("click",".confirmdelete",function(){ |
|
|
161 |
$(".dropdown").removeClass("open"); |
161 |
$(this).parents('tr').attr("class","warn"); |
162 |
$(this).parents('tr').attr("class","warn"); |
162 |
if(confirm(_("Are you sure you want to delete this saved report?"))){ |
163 |
if(confirm(_("Are you sure you want to delete this saved report?"))){ |
163 |
return true; |
164 |
return true; |
164 |
- |
|
|