From cb498db8df38b7a3602405f7d50b407c6de9e357 Mon Sep 17 00:00:00 2001 From: NoneGiven Date: Thu, 22 Aug 2013 19:38:58 -0400 Subject: [PATCH] Typo It just werx --- CHANGELOG.md | 2 +- src/General/Config.coffee | 2 +- src/General/Main.coffee | 2 +- src/Miscellaneous/IDColor.coffee | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c00eff26f..47bcd50eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -- **New feature**: `Color user IDs`, enabled by default +- **New feature**: `Color User IDs`, enabled by default ## 3.10.0 - *2013-08-22* diff --git a/src/General/Config.coffee b/src/General/Config.coffee index 11a94a89c..d6a194787 100644 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -50,7 +50,7 @@ Config = 'Thread Excerpt': [true, 'Show an excerpt of the thread in the tab title.'] 'Thread Stats': [true, 'Display reply, image, and page count.'] 'Thread Watcher': [true, 'Bookmark threads.'] - 'Color user IDs': [true, 'Assign unique colors to user IDs on boards that use them.'] + 'Color User IDs': [true, 'Assign unique colors to user IDs on boards that use them.'] 'Posting': 'Quick Reply': [true, 'All-in-one form to reply, create threads, automate dumping and more.'] 'Persistent QR': [false, 'The Quick reply won\'t disappear after posting.'] diff --git a/src/General/Main.coffee b/src/General/Main.coffee index cb19d8862..eee9be9ae 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -107,7 +107,7 @@ Main = initFeature 'Mark OP Quotes', QuoteOP initFeature 'Mark Cross-thread Quotes', QuoteCT initFeature 'Anonymize', Anonymize - initFeature 'Color user IDs', IDColor + initFeature 'Color User IDs', IDColor initFeature 'Time Formatting', Time initFeature 'Relative Post Dates', RelativeDates initFeature 'File Info Formatting', FileInfo diff --git a/src/Miscellaneous/IDColor.coffee b/src/Miscellaneous/IDColor.coffee index 800ce9969..25ff81247 100644 --- a/src/Miscellaneous/IDColor.coffee +++ b/src/Miscellaneous/IDColor.coffee @@ -1,10 +1,10 @@ IDColor = init: -> - return if g.VIEW is 'catalog' or !Conf['Color user IDs'] + return if g.VIEW is 'catalog' or !Conf['Color User IDs'] @ids = {} Post::callbacks.push - name: 'Color user IDs' + name: 'Color User IDs' cb: @node node: ->