mirror of
https://github.com/Tailszefox/Pony-Fusion.git
synced 2024-11-23 14:27:59 +01:00
Fixed not being able to click links in FAQ
This commit is contained in:
parent
063bf635e7
commit
fa6e4fb6c9
1 changed files with 4 additions and 3 deletions
|
@ -150,10 +150,11 @@ $(function ()
|
|||
|
||||
$("#faqWrapper").click(function (e) {
|
||||
$("#faqWrapper").hide();
|
||||
})
|
||||
});
|
||||
|
||||
$("#faqWrapper").children().click(function(e) {
|
||||
return false;
|
||||
$("#faq").click(function(e) {
|
||||
e.stopPropagation();
|
||||
return true;
|
||||
});
|
||||
|
||||
$("#faqLink").click(function (e) {
|
||||
|
|
Loading…
Reference in a new issue