diff --git a/builds/4chan-X.js b/builds/4chan-X.js index e851fccb9..737722cfe 100644 --- a/builds/4chan-X.js +++ b/builds/4chan-X.js @@ -4988,7 +4988,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 89444fa57..13d378701 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4979,7 +4979,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 4b00246fc..38d6dc300 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4843,7 +4843,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