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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-7 / +1 lines)
Lines 21-32 Link Here
21
    // <![CDATA[
21
    // <![CDATA[
22
    $(document).ready(function(){
22
    $(document).ready(function(){
23
        $("#deletesuggestion").on("click",function(){
23
        $("#deletesuggestion").on("click",function(){
24
            var is_confirmed = confirm(_("Are you sure you want to delete this suggestion?"));
24
            return confirm(_("Are you sure you want to delete this suggestion?"));
25
            if (is_confirmed) {
26
                return true;
27
            } else {
28
                return false;
29
            }
30
        });
25
        });
31
    });
26
    });
32
    // ]]>
27
    // ]]>
33
- 

Return to bug 10668