aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
AgeCommit message (Collapse)Author
2014-11-18Do not handle keystrokes for contentEditable.Stephen Blott
2014-11-16Smooth scroll; fix-ups requested by @philc.Stephen Blott
2014-11-15Smooth scroll; optimization and more tidy up.Stephen Blott
2014-11-14Smooth scroller; move calibration constants out of init.Stephen Blott
2014-11-14Smooth scroll; better documentation for calibration.Stephen Blott
2014-11-14Smooth scroll; move doScrollBy to it's own object.Stephen Blott
The main reason for doing this is so that we can add the (now) CoreScroller callbacks to the handler stack earlier, and therefore track @keyIsDown correctly at startup, while also keeping local state local.
2014-11-14Smooth scroll; partial fix to race condition.Stephen Blott
2014-11-14Smooth scroll; incororate feedback from @mrmr1993.Stephen Blott
2014-11-13Smooth scroll; admit count prefixes.Stephen Blott
2014-11-13Smooth scroll; yet more refactoring.Stephen Blott
2014-11-13Smooth scroll; fix displacement and calibrate.Stephen Blott
2014-11-13Smooth scrolling; note incorrect calibration; MUST BE FIXED!Stephen Blott
2014-11-13Smooth scrolling; tidy up, better comments.Stephen Blott
2014-11-12Favicons in the vomnibar; remove support.Stephen Blott
There are security issues with favicons as implemented previously. This commit removes favicon support entirely.
2014-11-11Smooth scroll; comments and more minor tidy up.Stephen Blott
2014-11-11Smooth scroll; add comment and remove unused variable.Stephen Blott
2014-11-11Smooth scroll; tidy up.Stephen Blott
2014-11-11Smooth scroll; eliminate race condition.Stephen Blott
2014-11-11Smooth scroll; tune key-repeat code.Stephen Blott
2014-11-11Smooth scroll; initial handle keyboard repeat.Stephen Blott
2014-11-11Smooth scroll; revert entry logic.Stephen Blott
2014-11-10Change smooth scrolling to requestAnimationFrame, tidy up scroller codemrmr1993
2014-11-09Smooth scroll; handle chrome bug and refactor.Stephen Blott
2014-11-07smooth scroll; fix absolute scrolling of active element.Stephen Blott
2014-11-07Smooth scrolling.Stephen Blott
2014-11-06Prune unnecessary stuff in ensureScrollChange.Stephen Blott
2014-11-05Disable scrolling for `overflow: hidden` elementsmrmr1993
2014-11-02Don't skip installing listeners.Stephen Blott
Fix listener installation bug. To see bug, do: - open vimium options page - use 'b' to select and go to a bookmark - use <alt-LEFT_ARROW> to return to options page - vimium key bindings are now *not* installed Bug was introduced in 28e9c8374bfc7a4fd479dbb958a4a87331fb0857.
2014-11-02Centralize handling of event propagation.Stephen Blott
2014-11-02Force our key event handlers to have the highest possible prioritymrmr1993
* The `window` object receives key events before the `document` object, and so any event listeners on `window` get priority. This commit switches from binding `keydown`, `keypress`, `keyup` on `document` to on `window`. * We were using `event.stopPropagation()` to prevent other event listeners from firing if we had handled an event. This stopped the event from propagating to other elements/objects and triggering their event listeners, but didn't block event listeners registered on the same object as ours. Switching to `event.stopImmediatePropagation()` ensures that our event listener is the last to run for the event. Fixing these issues allows Vimium to regain control over key events in Google Groups (eg. the [vimium-dev group](https://groups.google.com/forum/vimium-dev)).
2014-10-31Merge vomnibarToPage from @mrmr1993.Stephen Blott
2014-10-31Add comments about moving the Vomnibar to an iframemrmr1993
2014-10-29Revert 2c7bebb5f2c873850c2b2d82013cab4eb3d4913cStephen Blott
On reflection, this seems too dangerous: - Somebody excluded flash for a reason, and without knowing that reason, it seems dangerous. - Imagine a flash game with key bindings. Perhaps it uses ? to show the key bindings, and ESC to hide them again. With 2c7bebb5f2c873850c2b2d82013cab4eb3d4913c, you can never hide the key bindings (I think). All in all, this just seems too risky.
2014-10-29Repair insert mode.Stephen Blott
I broke it here: 77e1ded091062ca2e52264d222482dcd06290a9b
2014-10-27Merge favicons for vomnibar.Stephen Blott
2014-10-26Allow blur of embedded objects (e.g. flash).Stephen Blott
2014-10-26Fix detection of embedded objects.Stephen Blott
2014-10-26Change registerFrameIfSizeAvailable to registerFrame, stop sending sizemrmr1993
We were never using the area property, and it was causing an infinite setTimeout loop on frames with height == 0 or width == 0 (often caused by AdBlockPlus etc.).
2014-10-25Merge branch 'feature/edit-url-in-vomnibar' of github.com:sukima/vimium into ↵Stephen Blott
sukima-feature/edit-url-in-vomnibar Conflicts: background_scripts/commands.coffee
2014-10-25Merge pull request #784 from deiga/patch-3Stephen Blott
Add links-hint mode to download links
2014-10-22Merge pull request #1154 from smblott-github/passkeys-structuredStephen Blott
Structured exclusion rules internally, and on the popup and options pages.
2014-09-17Move the vomnibar to an iframemrmr1993
2014-09-05Merge pull request #1142 from luanpotter/masterPhil Crosby
Suggestion for impl of #1141
2014-09-03Changed to show url when item selectedLuan Nico
2014-09-02Structured exclusion rules: Fix typos and minor issues.Stephen Blott
2014-09-02Structured passkeys, internally and on the options and popup pages.Stephen Blott
2014-08-24Fix passKeys bug introduced in commit 700d35aStephen Blott
2014-08-24Do not call handlers which do not exist (fixed, again).Stephen Blott
2014-08-24Do not call handlers which do not exist (fixed).Stephen Blott
2014-08-24Do not call handlers which do not exist.Stephen Blott