From 82c74a0cf14a0b212353cc62ed1db57b0741229b Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Wed, 14 Jan 2015 17:08:17 -0700 Subject: [PATCH] Fix #852 --- builds/appchan-x.user.js | 2 +- builds/crx/script.js | 2 +- src/Posting/QR.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index e190298d8..04ef9bb2c 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -9836,7 +9836,7 @@ return; } list = QR.nodes.thread; - options = [list.firstChild]; + options = [list.firstElementChild]; _ref = g.BOARD.threads.keys; for (_i = 0, _len = _ref.length; _i < _len; _i++) { thread = _ref[_i]; diff --git a/builds/crx/script.js b/builds/crx/script.js index c78fc18a8..a06f392a2 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -9879,7 +9879,7 @@ return; } list = QR.nodes.thread; - options = [list.firstChild]; + options = [list.firstElementChild]; _ref = g.BOARD.threads.keys; for (_i = 0, _len = _ref.length; _i < _len; _i++) { thread = _ref[_i]; diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index 95be8578a..3c4285158 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -365,7 +365,7 @@ QR = generatePostableThreadsList: -> return unless QR.nodes list = QR.nodes.thread - options = [list.firstChild] + options = [list.firstElementChild] for thread in g.BOARD.threads.keys options.push $.el 'option', value: thread