FIX: Can click on links in expanded blog posts

This commit is contained in:
Robin Ward 2014-04-05 20:05:48 -04:00
parent c82313595d
commit 802ee04e9d
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@ Discourse.TopicView = Discourse.View.extend(Discourse.Scrolling, {
this.get('controller.streamPercentage');
this.$().on('mouseup.discourse-redirect', '.cooked a, a.track-link', function(e) {
if ($(e.target).hasClass('mention')) { return false; }
var $target = $(e.target);
if ($target.hasClass('mention') || $target.parents('.expanded-embed').length) { return false; }
return Discourse.ClickTrack.trackClick(e);
});
}.on('didInsertElement'),