From 9d0121a551906cb1a55cf6ee09aacdf7b2453791 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 18 Jan 2013 22:05:57 +0100 Subject: [PATCH] Fuck you moot, don't add titles to mobile elements. --- 4chan_x.user.js | 2 +- changelog | 1 + script.coffee | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 992e74ebc..0cf89cbda 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1787,7 +1787,7 @@ return $.on(d, 'dragstart dragend', QR.drag); }, node: function(post) { - return $.on($('a[title="Quote this post"]', post.el), 'click', QR.quote); + return $.on($('.postInfo a[title="Quote this post"]', post.el), 'click', QR.quote); }, open: function() { if (QR.el) { diff --git a/changelog b/changelog index ba12ffb8f..e692103a3 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,7 @@ master - Mayhem Add /po/ archive redirection for threads, images and post resurrection. + Fix quoting. 2.37.3 - Mayhem diff --git a/script.coffee b/script.coffee index a0a18901b..25133576f 100644 --- a/script.coffee +++ b/script.coffee @@ -1380,7 +1380,7 @@ QR = $.on d, 'dragstart dragend', QR.drag node: (post) -> - $.on $('a[title="Quote this post"]', post.el), 'click', QR.quote + $.on $('.postInfo a[title="Quote this post"]', post.el), 'click', QR.quote open: -> if QR.el