From b18acfcef2208689fdd8b7750048a2dd6862eed4 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 30 Apr 2013 03:35:55 +0200 Subject: [PATCH] Fix #1076. --- src/Miscellaneous/ExpandComment.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Miscellaneous/ExpandComment.coffee b/src/Miscellaneous/ExpandComment.coffee index 8ed23fbae..14e6a4d48 100644 --- a/src/Miscellaneous/ExpandComment.coffee +++ b/src/Miscellaneous/ExpandComment.coffee @@ -6,7 +6,7 @@ ExpandComment = name: 'Comment Expansion' cb: @node node: -> - if a = $ '.abbr > a', @nodes.comment + if a = $ '.abbr > a:not([onclick])', @nodes.comment $.on a, 'click', ExpandComment.cb cb: (e) -> e.preventDefault()