From c2fa9098b9ab88a268d78127e872413a38a05608 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 9 Oct 2011 20:39:58 +0200 Subject: [PATCH] Shorter selectors. --- 4chan_x.user.js | 28 ++++++++++++++-------------- script.coffee | 28 ++++++++++++++-------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 52c6005a4..b1047a087 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -662,7 +662,7 @@ } } } - _ref2 = $$('a.quotelink', bq); + _ref2 = $$('.quotelink', bq); for (_j = 0, _len2 = _ref2.length; _j < _len2; _j++) { quote = _ref2[_j]; if (quote.getAttribute('href') === quote.hash) { @@ -710,7 +710,7 @@ var a, backlink, num, prev, table, threadID, _i, _len, _ref, _ref2, _results; threadID = thread.firstChild.id; pathname = "/" + g.BOARD + "/res/" + threadID; - a = $('a.omittedposts', thread); + a = $('.omittedposts', thread); switch (a.textContent[0]) { case '+': if ((_ref = $('.op .container', thread)) != null) { @@ -766,7 +766,7 @@ _ref = $$('td[id]', body); for (_i = 0, _len = _ref.length; _i < _len; _i++) { reply = _ref[_i]; - _ref2 = $$('a.quotelink', reply); + _ref2 = $$('.quotelink', reply); for (_j = 0, _len2 = _ref2.length; _j < _len2; _j++) { quote = _ref2[_j]; if ((href = quote.getAttribute('href')) === quote.hash) { @@ -775,7 +775,7 @@ quote.href = "res/" + href; } } - link = $('a.quotejs', reply); + link = $('.quotejs', reply); link.href = "res/" + thread.firstChild.id + "#" + reply.id; link.nextSibling.href = "res/" + thread.firstChild.id + "#q" + reply.id; } @@ -1056,7 +1056,7 @@ }, qr: function(thread, quote) { if (quote) { - return QR.quote.call($('a.quotejs + a', $('td.replyhl', thread) || thread)); + return QR.quote.call($('.quotejs + a', $('.replyhl', thread) || thread)); } else { if (QR.qr) { return $('textarea', QR.qr).focus(); @@ -1408,7 +1408,7 @@ } g.callbacks.push(function(root) { var quote; - quote = $('a.quotejs + a', root); + quote = $('.quotejs + a', root); return $.bind(quote, 'click', QR.quote); }); $.add(d.body, $.el('iframe', { @@ -2362,7 +2362,7 @@ } id = root.id || $('td[id]', root).id; quotes = {}; - _ref = $$('a.quotelink', root); + _ref = $$('.quotelink', root); for (_i = 0, _len = _ref.length; _i < _len; _i++) { quote = _ref[_i]; if (!(qid = quote.hash.slice(1))) { @@ -2408,7 +2408,7 @@ init: function() { return g.callbacks.push(function(root) { var quote, _i, _len, _ref, _results; - _ref = $$('a.quotelink, a.backlink', root); + _ref = $$('.quotelink, .backlink', root); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { quote = _ref[_i]; @@ -2501,7 +2501,7 @@ } } newInline = quoteInline.table(id, html); - _ref2 = $$('a.quotelink', newInline); + _ref2 = $$('.quotelink', newInline); for (_j = 0, _len2 = _ref2.length; _j < _len2; _j++) { quote = _ref2[_j]; if ((href = quote.getAttribute('href')) === quote.hash) { @@ -2510,7 +2510,7 @@ quote.href = "res/" + href; } } - link = $('a.quotejs', newInline); + link = $('.quotejs', newInline); link.href = "" + pathname + "#" + id; link.nextSibling.href = "" + pathname + "#q" + id; $.addClass(newInline, 'crossquote'); @@ -2528,7 +2528,7 @@ init: function() { return g.callbacks.push(function(root) { var quote, _i, _len, _ref, _results; - _ref = $$('a.quotelink, a.backlink', root); + _ref = $$('.quotelink, .backlink', root); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { quote = _ref[_i]; @@ -2557,7 +2557,7 @@ } if (/backlink/.test(this.className)) { replyID = $.x('ancestor::*[@id][1]', this).id.match(/\d+/)[0]; - _ref = $$('a.quotelink', qp); + _ref = $$('.quotelink', qp); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { quote = _ref[_i]; @@ -2618,7 +2618,7 @@ return; } tid = g.THREAD_ID || $.x('ancestor::div[contains(@class,"thread")]/div', root).id; - _ref = $$('a.quotelink', root); + _ref = $$('.quotelink', root); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { quote = _ref[_i]; @@ -2632,7 +2632,7 @@ init: function() { return g.callbacks.push(function(root) { var a, span; - if (!(a = $('a.reportbutton', root))) { + if (!(a = $('.reportbutton', root))) { span = $('span[id^=no]', root); a = $.el('a', { className: 'reportbutton', diff --git a/script.coffee b/script.coffee index 3054a3f97..cebee1a10 100644 --- a/script.coffee +++ b/script.coffee @@ -462,7 +462,7 @@ expandComment = if reply.id == replyID bq = $ 'blockquote', reply break - for quote in $$ 'a.quotelink', bq + for quote in $$ '.quotelink', bq if quote.getAttribute('href') is quote.hash quote.pathname = "/#{g.BOARD}/res/#{threadID}" if quote.hash[1..] is threadID @@ -492,7 +492,7 @@ expandThread = toggle: (thread) -> threadID = thread.firstChild.id pathname = "/#{g.BOARD}/res/#{threadID}" - a = $ 'a.omittedposts', thread + a = $ '.omittedposts', thread switch a.textContent[0] when '+' @@ -536,12 +536,12 @@ expandThread = innerHTML: req.responseText for reply in $$ 'td[id]', body - for quote in $$ 'a.quotelink', reply + for quote in $$ '.quotelink', reply if (href = quote.getAttribute('href')) is quote.hash #add pathname to normal quotes quote.pathname = pathname else if href isnt quote.href #fix x-thread links, not x-board ones quote.href = "res/#{href}" - link = $ 'a.quotejs', reply + link = $ '.quotejs', reply link.href = "res/#{thread.firstChild.id}##{reply.id}" link.nextSibling.href = "res/#{thread.firstChild.id}#q#{reply.id}" tables = $$ 'form[name=delform] table', body @@ -720,7 +720,7 @@ keybinds = qr: (thread, quote) -> if quote - QR.quote.call $ 'a.quotejs + a', $('td.replyhl', thread) or thread + QR.quote.call $ '.quotejs + a', $('.replyhl', thread) or thread else if QR.qr $('textarea', QR.qr).focus() @@ -1026,7 +1026,7 @@ QR = #can't reply in some stickies, recaptcha may be blocked, eg by noscript return unless $('form[name=post]') and $('#recaptcha_response_field') g.callbacks.push (root) -> - quote = $ 'a.quotejs + a', root + quote = $ '.quotejs + a', root $.bind quote, 'click', QR.quote $.add d.body, $.el 'iframe', name: 'iframe' @@ -1756,7 +1756,7 @@ quoteBacklink = # op or reply id = root.id or $('td[id]', root).id quotes = {} - for quote in $$ 'a.quotelink', root + for quote in $$ '.quotelink', root #don't process >>>/b/ continue unless qid = quote.hash[1..] #duplicate quotes get overwritten @@ -1784,7 +1784,7 @@ quoteBacklink = quoteInline = init: -> g.callbacks.push (root) -> - for quote in $$ 'a.quotelink, a.backlink', root + for quote in $$ '.quotelink, .backlink', root continue unless quote.hash quote.removeAttribute 'onclick' $.bind quote, 'click', quoteInline.toggle @@ -1844,12 +1844,12 @@ quoteInline = html = reply.innerHTML break newInline = quoteInline.table id, html - for quote in $$ 'a.quotelink', newInline + for quote in $$ '.quotelink', newInline if (href = quote.getAttribute('href')) is quote.hash #add pathname to normal quotes quote.pathname = pathname else if !g.REPLY and href isnt quote.href #fix x-thread links, not x-board ones quote.href = "res/#{href}" - link = $ 'a.quotejs', newInline + link = $ '.quotejs', newInline link.href = "#{pathname}##{id}" link.nextSibling.href = "#{pathname}#q#{id}" $.addClass newInline, 'crossquote' @@ -1863,7 +1863,7 @@ quoteInline = quotePreview = init: -> g.callbacks.push (root) -> - for quote in $$ 'a.quotelink, a.backlink', root + for quote in $$ '.quotelink, .backlink', root continue unless quote.hash $.bind quote, 'mouseover', quotePreview.mouseover $.bind quote, 'mousemove', ui.hover @@ -1880,7 +1880,7 @@ quotePreview = $.addClass el, 'qphl' if conf['Quote Highlighting'] if /backlink/.test @className replyID = $.x('ancestor::*[@id][1]', @).id.match(/\d+/)[0] - for quote in $$ 'a.quotelink', qp + for quote in $$ '.quotelink', qp if quote.hash[1..] is replyID quote.className = 'forwardlink' else @@ -1916,14 +1916,14 @@ quoteOP = g.callbacks.push (root) -> return if root.className is 'inline' tid = g.THREAD_ID or $.x('ancestor::div[contains(@class,"thread")]/div', root).id - for quote in $$ 'a.quotelink', root + for quote in $$ '.quotelink', root if quote.hash[1..] is tid quote.innerHTML += ' (OP)' reportButton = init: -> g.callbacks.push (root) -> - if not a = $ 'a.reportbutton', root + if not a = $ '.reportbutton', root span = $ 'span[id^=no]', root a = $.el 'a', className: 'reportbutton'