diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-05-17 22:01:36 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-05-17 22:01:36 -0700 |
commit | eaf5ded127338e5f8c64f085e31004190b941f3d (patch) | |
tree | da051c4010050cb83eaa12b8b14caf886cba5864 /ext/bg/js | |
parent | a39feb66dba77dbbeece7850f2044372b066213d (diff) |
Revert "Reverse sort order"
This reverts commit a39feb66dba77dbbeece7850f2044372b066213d.
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/translator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js index c80964e7..1c397780 100644 --- a/ext/bg/js/translator.js +++ b/ext/bg/js/translator.js @@ -126,7 +126,7 @@ class Translator { return 1; } - return v1.expression.localeCompare(v2.expression); + return v2.expression.localeCompare(v1.expression); }); let length = 0; |