From 338fd8682a50d95ef9f59e1262725b453b45be40 Mon Sep 17 00:00:00 2001 From: isqua Date: Sun, 11 Jan 2015 14:17:44 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20=E2=80=9Cenlarge=20font=E2=80=9D=20settin?= =?UTF-8?q?gs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chrome_point_plus/js/point-plus.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome_point_plus/js/point-plus.js b/chrome_point_plus/js/point-plus.js index 6929a30..d0be6df 100644 --- a/chrome_point_plus/js/point-plus.js +++ b/chrome_point_plus/js/point-plus.js @@ -186,7 +186,7 @@ $(document).ready(function() { console.debug('Fancybox injection response: %O', response); if (response) { console.log('Fancybox executed. Processing...'); - + if (options.is('option_fancybox_bind_images_to_one_flow')) { // Linking images in posts to the galleries $('.post-content .text').each(function() { @@ -318,7 +318,7 @@ $(document).ready(function() { if (options.is('option_visual_editor_post')) { // Add classes $('#new-post-form #text-input, .post-content #text-input').addClass('markitup').css('height', '20em'); - + // CSS // @todo message response callback processing chrome.runtime.sendMessage({ @@ -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')) {