1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-10 08:10:52 +00:00

Fixed minor sorting bug in settings menu. Moved About tab to end of menu. Moved menu navigation to bottom of menu.

This commit is contained in:
SirStendec 2015-02-24 01:32:14 -05:00
parent fc21671b2c
commit 4c3b9217a8
6 changed files with 101 additions and 44 deletions

View file

@ -91,10 +91,10 @@ FFZ.menu_pages.settings = {
var a = a.toLowerCase(),
b = b.toLowerCase();
if ( a === "Debugging" )
if ( a === "debugging" )
a = "zzz" + a;
if ( b === "Debugging" )
if ( b === "debugging" )
b = "zzz" + b;
if ( a < b ) return -1;