diff options
| author | gdh1995 | 2015-08-28 21:10:04 +0800 | 
|---|---|---|
| committer | gdh1995 | 2015-08-28 21:10:04 +0800 | 
| commit | da8653f303015f0780fe3270a2ec8db60316d29e (patch) | |
| tree | 5ec9f4c22129f795c1ec30f0d2ee7461d04c88c5 /content_scripts/vimium_frontend.coffee | |
| parent | 034e2515a0a23cc02046bc761adf950232715885 (diff) | |
| download | vimium-da8653f303015f0780fe3270a2ec8db60316d29e.tar.bz2 | |
clean code
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 3abd2abb..962b7d6d 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -775,7 +775,7 @@ window.enterFindMode = ->  window.showHelpDialog = (html, fid) ->    return if (isShowingHelpDialog || !document.body || fid != frameId)    isShowingHelpDialog = true -  container = DomUtils.createElement("div") +  container = DomUtils.createElement "div"    container.id = "vimiumHelpDialogContainer"    container.className = "vimiumReset" @@ -861,7 +861,7 @@ CursorHider =      # See #1345 and #1348.      return unless Utils.haveChromeVersion "39.0.2171.71" -    @cursorHideStyle = DomUtils.createElement("style") +    @cursorHideStyle = DomUtils.createElement "style"      @cursorHideStyle.innerHTML = """        body * {pointer-events: none !important; cursor: none !important;}        body, html {cursor: none !important;} | 
