Fix “enlarge font” settings

This commit is contained in:
isqua 2015-01-11 14:17:44 +03:00 committed by Alexey Skobkin
parent bf9e8940ed
commit 1a190e04e8
1 changed files with 4 additions and 4 deletions

View File

@ -593,8 +593,8 @@ $(document).ready(function() {
};
}
// Font size
if ((options.is('option_enlarge_font')) && (option.get('option_enlarge_font_size'))) {
$('body').css('font-size', (option.get('option_enlarge_font_size') / 100) + 'em');
if ((options.is('option_enlarge_font')) && (options.get('option_enlarge_font_size'))) {
$('body').css('font-size', (options.get('option_enlarge_font_size') / 100) + 'em');
}
// @ before username
if (options.is('option_at_before_username')) {