View | Details | Raw Unified | Return to bug 3134
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 / +7 lines)
Lines 129-135 $(document).ready(function(){ Link Here
129
            alert(_("You must select one or more reports to delete"));
129
            alert(_("You must select one or more reports to delete"));
130
            return false;
130
            return false;
131
        }
131
        }
132
        return confirm(_("Are you sure you want to delete the selected reports?"));
132
        $(checkedItems).parents('tr').addClass("warn");
133
        if( confirm(_("Are you sure you want to delete the selected reports?")) ) {
134
            return true;
135
        } else {
136
            $(checkedItems).parents('tr').removeClass("warn");
137
            return false;
138
        }
133
    });
139
    });
134
[% END %]
140
[% END %]
135
141
136
- 

Return to bug 3134