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

(-)a/koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js (-2 / +3 lines)
Lines 25-31 $( document ).ready(function() { Link Here
25
25
26
    $("#newalert").on("click",function(e){
26
    $("#newalert").on("click",function(e){
27
        e.preventDefault();
27
        e.preventDefault();
28
        $("#new-alert-form").show();
28
        $("#new-alert-form").show( 0, function(){
29
            $("#selector").focus();
30
        });
29
        $("#toolbar, #delete-alert-form").hide();
31
        $("#toolbar, #delete-alert-form").hide();
30
    });
32
    });
31
33
32
- 

Return to bug 31413