diff --git a/builds/4chan-X.js b/builds/4chan-X.js index c3108ceb5..c79fbe19c 100644 --- a/builds/4chan-X.js +++ b/builds/4chan-X.js @@ -4934,7 +4934,7 @@ if (!text) { return; } - as = $$('#full-board-list a', Header.bar).slice(0, -2); + as = $$('#full-board-list a', Header.bar); nodes = text.match(/[\w@]+(-(all|title|replace|full|index|catalog|text:"[^"]+"))*|[^\w@]+/g).map(function(t) { var a, board, m, _i, _len; diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 621ca25a6..40873bc22 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4925,7 +4925,7 @@ if (!text) { return; } - as = $$('#full-board-list a', Header.bar).slice(0, -2); + as = $$('#full-board-list a', Header.bar); nodes = text.match(/[\w@]+(-(all|title|replace|full|index|catalog|text:"[^"]+"))*|[^\w@]+/g).map(function(t) { var a, board, m, _i, _len; diff --git a/builds/crx.crx b/builds/crx.crx deleted file mode 100644 index 77e8f53c6..000000000 Binary files a/builds/crx.crx and /dev/null differ diff --git a/builds/crx/script.js b/builds/crx/script.js index 6e99d709e..f8b64119c 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4789,7 +4789,7 @@ if (!text) { return; } - as = $$('#full-board-list a', Header.bar).slice(0, -2); + as = $$('#full-board-list a', Header.bar); nodes = text.match(/[\w@]+(-(all|title|replace|full|index|catalog|text:"[^"]+"))*|[^\w@]+/g).map(function(t) { var a, board, m, _i, _len; diff --git a/src/features/misc/header.coffee b/src/features/misc/header.coffee index f4e3c7fa1..5d55e0e6f 100644 --- a/src/features/misc/header.coffee +++ b/src/features/misc/header.coffee @@ -122,7 +122,7 @@ Header = list = $ '#custom-board-list', Header.bar $.rmAll list return unless text - as = $$('#full-board-list a', Header.bar)[0...-2] # ignore the Settings and Home links + as = $$('#full-board-list a', Header.bar) nodes = text.match(/[\w@]+(-(all|title|replace|full|index|catalog|text:"[^"]+"))*|[^\w@]+/g).map (t) -> if /^[^\w@]/.test t return $.tn t