fix #2190 fix links of menus

This commit is contained in:
Shinsuke Sugaya 2019-07-25 06:38:13 +09:00
parent cfa85338f3
commit c88979a369
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ $(function() {
});
$(document).on("click touchend", function(e) {
if (!$(e.target).closest("#searchOptions, #searchOptionsButton").length) {
if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
$("#searchOptions").removeClass("active");
}
});

View file

@ -15,7 +15,7 @@ $(function() {
});
$(document).on("click touchend", function(e) {
if (!$(e.target).closest("#searchOptions, #searchOptionsButton").length) {
if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
$("#searchOptions").removeClass("active");
}
});