From 9368cbb232b9a6556c1986ece1aa685b03d5008e Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Tue, 7 Jan 2014 22:35:06 -0700 Subject: [PATCH] Reorder Index menu entries --- builds/4chan-X.user.js | 2 +- builds/crx/script.js | 2 +- src/General/Index.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index fd6dfdfbb..1e9fb5d42 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -2255,7 +2255,7 @@ textContent: 'Index Navigation' }), order: 90, - subEntries: [modeEntry, sortEntry, repliesEntry, anchorEntry, refNavEntry] + subEntries: [repliesEntry, anchorEntry, refNavEntry, modeEntry, sortEntry] }); $.addClass(doc, 'index-loading'); this.update(); diff --git a/builds/crx/script.js b/builds/crx/script.js index 919717db4..c6aaa4efe 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -2265,7 +2265,7 @@ textContent: 'Index Navigation' }), order: 90, - subEntries: [modeEntry, sortEntry, repliesEntry, anchorEntry, refNavEntry] + subEntries: [repliesEntry, anchorEntry, refNavEntry, modeEntry, sortEntry] }); $.addClass(doc, 'index-loading'); this.update(); diff --git a/src/General/Index.coffee b/src/General/Index.coffee index a3f54c8e5..94166994d 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -64,7 +64,7 @@ Index = el: $.el 'span', textContent: 'Index Navigation' order: 90 - subEntries: [modeEntry, sortEntry, repliesEntry, anchorEntry, refNavEntry] + subEntries: [repliesEntry, anchorEntry, refNavEntry, modeEntry, sortEntry] $.addClass doc, 'index-loading' @update()