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 |
- |
|
|