aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
AgeCommit message (Collapse)Author
2017-11-20Unify link hint flash codepathsmrmr1993
2017-11-20Inline installKeyboardBlockermrmr1993
2017-11-20Tidy up multiple/redundant checks in LinkHints.activateLinkmrmr1993
2017-11-20Use Rect.translate to create rects for addFlashRectmrmr1993
2017-11-18Merge pull request #2802 from mrmr1993/pr/link-hints-pass-non-printing-keysStephen Blott
Don't suppress default action for non-printing keys in link hints
2017-11-18FF: Show HUD (transparently) when pasting, manage focus changes bettermrmr1993
2017-11-18FF: Use HUD frame for openCopiedUrlIn{Current,New}Tabmrmr1993
2017-11-18FF: Use HUD.copyToClipboard everywheremrmr1993
2017-11-18FF: Use HUD.copyToClipboard for copyCurrentUrlmrmr1993
2017-11-18Initialize the HUD for clipboard operations if it hasn't been alreadymrmr1993
2017-11-18FF: Add copy/paste functions to the HUDmrmr1993
2017-11-18Note reason for this rather obscure line.Stephen Blott
2017-11-18Merge pull request #2800 from mrmr1993/ff-aggressively-restore-window-expandoStephen Blott
FF: Restore window expando on every event listener
2017-11-18Make clear that element need not be provided here.Stephen Blott
2017-11-18Merge pull request #2801 from mrmr1993/pr/search-for-scrolling-element-from-bodyStephen Blott
Start searching for scrollable elements from <body> instead of <html> whenever possible
2017-11-16Use Mode::push to handle adding/removing a handlermrmr1993
2017-11-14Don't suppress default action for non-printing keys in link hintsmrmr1993
This restores the old behaviour prior to c4cc76e9f6a0a99ebc297e420be739a0fc77f827 (PR #2772).
2017-11-14Start searching for scrollable elements from <body> whenever possiblemrmr1993
2017-11-14FF: Restore window expando on every event listenermrmr1993
This should fix *most* problems from Firefox issue 1408996[1]. The root cause of the bug is that document.domain is set, and Firefox discards the 'expando' for the window that contains all properties we set. Technically, this can happen at any time, and so some failures are still possible. This fixes #2799. [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=1408996
2017-11-12Use tabIndex to provide the special focusInput behaviour in the optionsmrmr1993
2017-11-12Make focusInput visit inputs according to tabIndex ordermrmr1993
2017-11-11Remove unclear & unnecessary tabCount argument to updateVisibleMarkersmrmr1993
2017-11-11Clear tabCount explicitly when needed, instead of implicitly and undoingmrmr1993
This changes the behaviour of Enter and Space. * It should make no difference for Enter, as it exits the mode. * It makes no sense for rotating the layering of the hints to clear the active hint (when the next key is pressed), so I suspect it was an oversight.
2017-11-09Use HTML labels accessor to get link hint labels for input elementsmrmr1993
2017-11-09Suppress keydown events for link hint charactersmrmr1993
2017-11-02Compare with lower case strings when using toLowerCasemrmr1993
Credit to @gdh1995 for catching this.
2017-11-02Replace all references to selection.type with our FF polyfillmrmr1993
Credit to @gdh1995 for catching these oversights.
2017-11-02FF: Don't use Selection.getRangeAt(0) when there are no rangesmrmr1993
This fixes #2757.
2017-11-02Merge pull request #2762 from mrmr1993/gmail-rolesStephen Blott
Add some roles used by GMail to link hints
2017-11-02Add some roles used by GMail to link hints, reduce no. of comparisonsmrmr1993
2017-11-02Remove the right listener from hashchangemrmr1993
2017-11-01Use Rect.intersects instead of Rect.intersectsStrictmrmr1993
We don't care about overlap at the border here, so we can happily use intersects over intersectsStrict.
2017-11-01Rename Rect.rectOverlaps to Rect.intersectsStrict, clarify the commentmrmr1993
2017-10-29Remove unused codemrmr1993
2017-10-29Let handlerStack call consumeKeyup rather than calling it explicitlymrmr1993
2017-10-29Suppress all keyup events automatically if we consume the keydownmrmr1993
2017-10-29Merge pull request #2748 from mrmr1993/frontend-splitStephen Blott
Move normal mode and its commands out of vimium_frontend.coffee
2017-10-29Guard against undefined DomUtils, instead of stubbing in testsmrmr1993
2017-10-29Make file inputs work with filtered hints.Stephen Blott
2017-10-29Tidy up exports in vimium_frontendmrmr1993
2017-10-29Move findAndFollow* to mode_normal.coffeemrmr1993
2017-10-29Move FocusSelector to mode_normal.coffeemrmr1993
2017-10-29Move selectFoundInputElement into mode_findmrmr1993
2017-10-29Move focusFoundLink into mode_find, don't expose it as globalmrmr1993
2017-10-28Remove normal mode commands from global scopemrmr1993
2017-10-28Remove invokeCommandString, call NormalModeCommands directlymrmr1993
2017-10-28Bind LinkHints, Vomnibar and Marks commands appropriatelymrmr1993
2017-10-27Move goPrevious and goNext to normal mode filemrmr1993
2017-10-27Include LinkHints, Vomnibar and Marks commands in normal mode filemrmr1993
2017-10-27Split focusInput, move the main part into the normal mode filemrmr1993