From eb0955875ba6ba77a90b1e411c42be0df6de950d Mon Sep 17 00:00:00 2001
From: Jez Ng
Date: Tue, 4 Sep 2012 15:23:29 -0400
Subject: Style fixes.
Errors were detected using coffeelint.
---
 content_scripts/vimium_frontend.coffee | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
(limited to 'content_scripts/vimium_frontend.coffee')
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index ab3b1fbf..adec11c5 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -295,8 +295,8 @@ extend window,
       chrome.extension.sendRequest({ handler: "openUrlInNewTab", url: url, selected: true })
 
   copyCurrentUrl: ->
-    # TODO(ilya): When the following bug is fixed, revisit this approach of sending back to the background page
-    # to copy.
+    # TODO(ilya): When the following bug is fixed, revisit this approach of sending back to the background
+    # page to copy.
     # http://code.google.com/p/chromium/issues/detail?id=55188
     chrome.extension.sendRequest { handler: "getCurrentTabUrl" }, (url) ->
       chrome.extension.sendRequest { handler: "copyToClipboard", data: url }
@@ -895,9 +895,9 @@ window.showHelpDialog = (html, fid) ->
       this.dialogElement.style.maxHeight = window.innerHeight - 80
       this.showAdvancedCommands(this.getShowAdvancedCommands())
 
-    # 
+    #
     # Advanced commands are hidden by default so they don't overwhelm new and casual users.
-    # 
+    #
     toggleAdvancedCommands: (event) ->
       event.preventDefault()
       showAdvanced = VimiumHelpDialog.getShowAdvancedCommands()
@@ -958,9 +958,9 @@ HUD =
     HUD.displayElement().style.display = ""
 
   showUpgradeNotification: (version) ->
-    HUD.upgradeNotificationElement().innerHTML = "Vimium has been updated to " +
-      "" +
-      version + ".x"
+    HUD.upgradeNotificationElement().innerHTML = "Vimium has been updated to 
+      
+      #{version}.x"
     links = HUD.upgradeNotificationElement().getElementsByTagName("a")
     links[0].addEventListener("click", HUD.onUpdateLinkClicked, false)
     links[1].addEventListener "click", (event) ->
-- 
cgit v1.2.3