Commit 31c0e744 by Kálmán Viktor

dashboard: fix notif links not clickable

parent 9475b2bf
......@@ -371,8 +371,11 @@ $(function () {
});
/* don't close notifications window on missclick */
$(document).on("click", ".notification-messages", function() {
return false;
$(document).on("click", ".notification-messages", function(e) {
if($(e.target).closest("a").length)
return true
else
return false;
});
$("#notification-button a").click(function() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment