diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 3a1613483..08619a179 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -150,7 +150,7 @@ 'Keybinds': [true, 'Bind actions to keyboard shortcuts.'], 'Time Formatting': [true, 'Localize and format timestamps.'], 'Relative Post Dates': [true, 'Display dates like "3 minutes ago". Tooltip shows the timestamp.'], - 'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1], + 'Relative Date Title': [false, 'Show Relative Post Date only when hovering over dates.', 1], 'File Info Formatting': [true, 'Reformat the file information.'], 'Thread Expansion': [true, 'Add buttons to expand threads.'], 'Comment Expansion': [false, 'Expand Comments that are too long to display on the index. Does not work with JSON Navigation.'], diff --git a/builds/crx/script.js b/builds/crx/script.js index db77ac58b..047bd5b99 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -123,7 +123,7 @@ 'Keybinds': [true, 'Bind actions to keyboard shortcuts.'], 'Time Formatting': [true, 'Localize and format timestamps.'], 'Relative Post Dates': [true, 'Display dates like "3 minutes ago". Tooltip shows the timestamp.'], - 'Relative Date Title': [true, 'Show Relative Post Date only when hovering over dates.', 1], + 'Relative Date Title': [false, 'Show Relative Post Date only when hovering over dates.', 1], 'File Info Formatting': [true, 'Reformat the file information.'], 'Thread Expansion': [true, 'Add buttons to expand threads.'], 'Comment Expansion': [false, 'Expand Comments that are too long to display on the index. Does not work with JSON Navigation.'], diff --git a/src/General/Config.coffee b/src/General/Config.coffee index 1babab213..0d90734b1 100644 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -42,7 +42,7 @@ Config = 'Display dates like "3 minutes ago". Tooltip shows the timestamp.' ] 'Relative Date Title': [ - true + false 'Show Relative Post Date only when hovering over dates.' 1 ]