From 9854650ee06919e294bbc593f361d8cd01c08fd2 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 6 Jul 2016 22:06:09 -0400 Subject: [PATCH] Fix whitespace in popup.js --- popup.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/popup.js b/popup.js index f87340d..3458e3e 100644 --- a/popup.js +++ b/popup.js @@ -91,11 +91,11 @@ document.addEventListener('DOMContentLoaded', function() { code: "window.getSelection().toString();" }, function(selection) { if (typeof selection !== 'undefined') { - $content.value = selection[0]; + $content.value = selection[0]; } // load previous draft if ($content.value == "") { - H.load($content, 'ext-draft'); + H.load($content, 'ext-draft'); } }); @@ -232,9 +232,9 @@ document.addEventListener('DOMContentLoaded', function() { // bind font changing action for(var i = 0; i < fontRadios.length; i++) { fontRadios[i].onclick = function() { - $content.className = this.value; - setPublishText(this.value, false); - H.save(fontRadios, 'font'); + $content.className = this.value; + setPublishText(this.value, false); + H.save(fontRadios, 'font'); }; }