Commit 31c0e744 by Kálmán Viktor

dashboard: fix notif links not clickable

parent 9475b2bf
......@@ -371,7 +371,10 @@ $(function () {
});
/* don't close notifications window on missclick */
$(document).on("click", ".notification-messages", function() {
$(document).on("click", ".notification-messages", function(e) {
if($(e.target).closest("a").length)
return true
else
return false;
});
......
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