Merged in isqua/chrome_point_plus/iss61 (pull request #29) Fixes #61; Fix “enlarge font” settings

This commit is contained in:
Alexey Skobkin 2015-01-11 16:53:14 +03:00
commit 1b5cd3ce97
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')) {