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

(-)a/koha-tmpl/intranet-tmpl/prog/js/members-menu.js (-4 / +7 lines)
Lines 57-65 $(document).ready(function(){ Link Here
57
            $(".btn-group").removeClass("open");
57
            $(".btn-group").removeClass("open");
58
            return false;
58
            return false;
59
        });
59
        });
60
        $("#updatechild").click(function(){
60
        $("#updatechild").click(function(e){
61
            update_child();
61
            if( $(this).data("toggle") == "tooltip"){ // Disabled menu option has tooltip attribute
62
            $(".btn-group").removeClass("open");
62
                e.preventDefault();
63
            } else {
64
                update_child();
65
                $(".btn-group").removeClass("open");
66
            }
63
        });
67
        });
64
    }
68
    }
65
69
66
- 

Return to bug 19641