diff options
| author | Stephen Blott | 2015-06-05 06:35:26 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-06-05 06:35:26 +0100 | 
| commit | a143d2c81a9faaf383a05b0dae2f232db85959a2 (patch) | |
| tree | 78212565a21519d500be54c58a201d2ccfbcc610 | |
| parent | 50980718d848ca324b6fca0568e2fa7203d51d52 (diff) | |
| download | vimium-a143d2c81a9faaf383a05b0dae2f232db85959a2.tar.bz2 | |
Global marks; fix indentation.
| -rw-r--r-- | content_scripts/marks.coffee | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/content_scripts/marks.coffee b/content_scripts/marks.coffee index 5bb35f1f..3b5814da 100644 --- a/content_scripts/marks.coffee +++ b/content_scripts/marks.coffee @@ -36,15 +36,15 @@ Marks =          # characters.          @exit =>            if event.shiftKey -              chrome.runtime.sendMessage -                handler: 'createMark' -                markName: keyChar -                scrollX: window.scrollX -                scrollY: window.scrollY -              , => @showMessage "Created global mark", keyChar +            chrome.runtime.sendMessage +              handler: 'createMark' +              markName: keyChar +              scrollX: window.scrollX +              scrollY: window.scrollY +            , => @showMessage "Created global mark", keyChar            else -              localStorage[@getLocationKey keyChar] = @getMarkString() -              @showMessage "Created local mark", keyChar +            localStorage[@getLocationKey keyChar] = @getMarkString() +            @showMessage "Created local mark", keyChar    activateGotoMode: (registryEntry) ->      @mode = new Mode | 
