From 23dcf17f3fcf33976261b04227e2106e30bafdc2 Mon Sep 17 00:00:00 2001 From: isqua Date: Thu, 8 Jan 2015 15:34:32 +0300 Subject: [PATCH 1/2] Fixes #58; grunt-bump breaks manifest_version in manifest.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1b68b67..5fdb81b 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "devDependencies": { "bower": "^1.3.12", "grunt": "^0.4.5", - "grunt-bump": "0.0.16", + "grunt-bump": "git://github.com/nkirkes/grunt-bump.git#nkirkes/restrict-version-key-name", "grunt-contrib-copy": "^0.7.0" } } From 338fd8682a50d95ef9f59e1262725b453b45be40 Mon Sep 17 00:00:00 2001 From: isqua Date: Sun, 11 Jan 2015 14:17:44 +0300 Subject: [PATCH 2/2] =?UTF-8?q?Fix=20=E2=80=9Cenlarge=20font=E2=80=9D=20se?= =?UTF-8?q?ttings?= 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')) {