Removed unused/old/pre-refactor settings

•Removed:
- unused/old/pre-refactor settings
This commit is contained in:
mgabdev
2020-06-07 14:01:54 -04:00
parent 250e6a4357
commit 985e1458d5
11 changed files with 5 additions and 44 deletions

View File

@@ -96,8 +96,6 @@ module ApplicationHelper
def body_classes
output = (@body_classes || '').split(' ')
output << "theme-#{current_theme.parameterize}"
output << 'system-font' if current_account&.user&.setting_system_font_ui
output << (current_account&.user&.setting_reduce_motion ? 'reduce-motion' : 'no-reduce-motion')
output << 'rtl' if locale_direction == 'rtl'
output.reject(&:blank?).join(' ')
end