| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-12-19 | Merge branch 'fix-scrolling-on-non-scrollable-documents' into post-1.46 | Stephen Blott | |
| Rationale: - The cases it fixes are quite common. - The cases in which it might choose the wrong element to scroll seem to be quite obscure. - If the wrong element is chosen, the situation is no worse than that of the common cases we're fixing. - We'll never find problems with it unless people are using it on a day-to-day basis. | |||
| 2014-12-19 | Also test negative direction when initializing scroller. | Stephen Blott | |
| The right scrollable element to choose may be scrolled to the bottom, so we won't find it if we only test scrolling down. We need to test scrolling up as well. | |||
| 2014-12-19 | Delay initialization of activeElement. | Stephen Blott | |
| We could incorrectly initialize activeElement to document.body if the scroller is called too early; so delay initialization. It's safe to leave activeElement as null. | |||
| 2014-12-19 | Initialize scroller to *largest* visible scrollable element. | Stephen Blott | |
| 2014-12-19 | Initialize scroller to first scrollable element. | Stephen Blott | |
| See #1358. | |||
| 2014-12-19 | Disable cursor hider. | Stephen Blott | |
| See #1359. There appear to be common cases where the cursor hider doesn't hide the cursor. So the UX is inconsistent. We need to consider whether this is fixable or acceptable. | |||
| 2014-12-19 | Tidy cursor hider, move haveChromeVersion to utils. | Stephen Blott | |
| 2014-12-19 | Detect aria properties for disabling/hiding elements in link hints | mrmr1993 | |
| 2014-12-18 | Don't show a link hint for certain link hint elements | mrmr1993 | |
| Disables showing link hint for elements which * are identified as clickableonly by the tabindex attribute, and * have the entirety of their contents overlapped by other clickable elements. This removes some redundant link hints that were visible on Google+, and hopefully shouldn't remove any useful link hints. | |||
| 2014-12-18 | Add brackets so the code compiles as expected | mrmr1993 | |
| 2014-12-18 | Improve comments for LinkHints.getVisibleClickableElements | mrmr1993 | |
| 2014-12-18 | Split textarea and input detection in link hints | mrmr1993 | |
| 2014-12-18 | Move rect functions to their own file | mrmr1993 | |
| 2014-12-18 | Complete a partially written comment | mrmr1993 | |
| 2014-12-18 | Add link hint support for jsaction event listeners | mrmr1993 | |
| This was adapted from PR #1316, commit 846a19efe51bfc639ae1ee84e18a5f2d3e12aaff | |||
| 2014-12-18 | Remove overlapping rects from link hints | mrmr1993 | |
| 2014-12-17 | Disable cursor hiding for Chrome versions < 39.0.2171.71 | mrmr1993 | |
| There is a bug for earlier versions of Chrome which leaves `pointer-events: none` stuck enabled for Google+ after a certain amount of scrolling. | |||
| 2014-12-17 | Ensure cursor is hidden on scroll | mrmr1993 | |
| 2014-12-17 | Add comment re. Math.sign(). | Stephen Blott | |
| 2014-12-17 | Disable CursorHider pending fix for #1345. | Stephen Blott | |
| 2014-12-17 | Revert 932652086c9ad601c92ef4aae250f9e0b6ad51a6. | Stephen Blott | |
| 2014-12-17 | Ensure we only init CursorHider once | mrmr1993 | |
| 2014-12-17 | Remove redundant array conversion | mrmr1993 | |
| 2014-12-17 | Combine rectangle calculation and clickable element detection | mrmr1993 | |
| 2014-12-17 | Simplify finding clickable elements | mrmr1993 | |
| 2014-12-17 | Inline DomUtils.getClickableElements | mrmr1993 | |
| 2014-12-17 | Use the DOM rather than XPath to detect clickable elements | mrmr1993 | |
| 2014-12-17 | Updated link should point to release notes. | Stephen Blott | |
| 2014-12-17 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| 2014-12-16 | Add a little more context to a comment | Phil Crosby | |
| 2014-12-16 | Do not use Math.sign(). | Stephen Blott | |
| 2014-12-16 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| Conflicts: background_scripts/main.coffee | |||
| 2014-12-16 | Add comments to nextFrame logic. | Stephen Blott | |
| 2014-12-16 | Merge branch 'skip-tiny-frames' of https://github.com/mrmr1993/vimium into ↵ | Stephen Blott | |
| mrmr1993-skip-tiny-frames | |||
| 2014-12-16 | Merge remote-tracking branch 'upstream/master' into post-1.46 | Stephen Blott | |
| 2014-12-16 | Fix smooth scrolling, all cases. | Stephen Blott | |
| 2014-12-16 | Use a tolerance when checking scrolling to fix zoomed scrolls | mrmr1993 | |
| 2014-12-15 | Skip over tiny frames when calling focusThisFrame | mrmr1993 | |
| GMail and Google Inbox both use a large number of small (typically 0x0 or 1x1 frames) which we have to pass over with nextFrame to get to the frames we want. We avoid this issue by ignoring all frames with height or width < 3, since these will be essentially invisible to the user anyway. | |||
| 2014-12-15 | Fix typo | Phil Crosby | |
| 2014-12-15 | Merge branch 'master' into post-1.46 | Stephen Blott | |
| 2014-12-15 | Fix second memory leak in KeydownEvents. | Stephen Blott | |
| 2014-12-15 | Rework KeydownEvents as an abject. | Stephen Blott | |
| 2014-12-15 | Merge branch 'stop-memory-leak-for-keydown-repeats' of ↵ | Stephen Blott | |
| https://github.com/mrmr1993/vimium into mrmr1993-stop-memory-leak-for-keydown-repeats | |||
| 2014-12-14 | Only register events as handled once | mrmr1993 | |
| 2014-12-14 | FRAMESET frames should not be registered. | Stephen Blott | |
| Somewhere along the road, this got goofed up. This reverts to the intended behaviour. | |||
| 2014-12-14 | FRAMESET frames should not be registered. | Stephen Blott | |
| Somewhere along the road, this got goofed up. This reverts to the intended behaviour. | |||
| 2014-12-14 | Minor refactoring of CursorHider. | Stephen Blott | |
| 2014-12-14 | Merge branch 'hideMouseOnLinux' of https://github.com/mrmr1993/vimium into ↵ | Stephen Blott | |
| mrmr1993-hideMouseOnLinux | |||
| 2014-12-14 | Merge branch 'disable-on-disable' of https://github.com/mrmr1993/vimium into ↵ | Stephen Blott | |
| mrmr1993-disable-on-disable | |||
| 2014-12-14 | Merge branch 'vomnibarToPage' of https://github.com/smblott-github/vimium ↵ | Stephen Blott | |
| into smblott-github-vomnibarToPage Conflicts: background_scripts/main.coffee content_scripts/vimium.css content_scripts/vomnibar.coffee lib/utils.coffee | |||
