aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
AgeCommit message (Collapse)Author
2014-12-29IFrame framework; develop demo.Stephen Blott
2014-12-29Scroller; check document.body exists.Stephen Blott
2014-12-28Add an example test for UIComponentmrmr1993
2014-12-28Add UIComponent code for iframesmrmr1993
2014-12-28Merge branch 'link-hints-overlap' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-link-hints-overlap
2014-12-24Merge remote-tracking branch 'upstream/master' into post-1.46Stephen Blott
2014-12-23be null-safe when checking `document.body.tagName`nchase
fixes #1365
2014-12-22Add comment regarding .blur() on embeds.Stephen Blott
Including embeds for .blur() etc. here is experimental. It appears to be the right thing to do for most common use cases. However, it could also cripple flash-based sites and games. See discussion in #1211 and #1194.
2014-12-22Merge branch 'blur-on-escape2' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-blur-on-escape2
2014-12-22Reintroduce 2c7bebb5f2c873850c2b2d82013cab4eb3d4913cmrmr1993
2014-12-22Use a splat instead of applymrmr1993
2014-12-22Merge branch 'link-hints-overlap' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-link-hints-overlap
2014-12-22Prefer `||=` to `= true if`mrmr1993
2014-12-22Merge branch 'link-hints-overlap' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-link-hints-overlap
2014-12-22Use push with a splat rather than concatmrmr1993
2014-12-22Rename a poorly named variablemrmr1993
2014-12-22Merge branch 'link-hints-overlap' of https://github.com/mrmr1993/vimium into ↵Stephen Blott
mrmr1993-link-hints-overlap
2014-12-20Use ||= to not ignore some clickable elements, no negative tabindexmrmr1993
Elements with `tabindex="n"` for parseInt(n) < 0 cannot be selected by pressing the tab key, according to the spec. If we have no other reason to suspect that the element is clickable, we may as well ignore them.
2014-12-20Merge remote-tracking branch 'upstream/master' into post-1.46Stephen Blott
2014-12-20Upgrade notification opens in a new tab.Stephen Blott
2014-12-20Better upgrade notification message.Stephen Blott
2014-12-19Merge branch 'fix-scrolling-on-non-scrollable-documents' into post-1.46Stephen 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-19Also 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-19Delay 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-19Initialize scroller to *largest* visible scrollable element.Stephen Blott
2014-12-19Initialize scroller to first scrollable element.Stephen Blott
See #1358.
2014-12-19Disable 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-19Tidy cursor hider, move haveChromeVersion to utils.Stephen Blott
2014-12-19Detect aria properties for disabling/hiding elements in link hintsmrmr1993
2014-12-18Don't show a link hint for certain link hint elementsmrmr1993
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-18Add brackets so the code compiles as expectedmrmr1993
2014-12-18Improve comments for LinkHints.getVisibleClickableElementsmrmr1993
2014-12-18Split textarea and input detection in link hintsmrmr1993
2014-12-18Move rect functions to their own filemrmr1993
2014-12-18Complete a partially written commentmrmr1993
2014-12-18Add link hint support for jsaction event listenersmrmr1993
This was adapted from PR #1316, commit 846a19efe51bfc639ae1ee84e18a5f2d3e12aaff
2014-12-18Remove overlapping rects from link hintsmrmr1993
2014-12-17Disable cursor hiding for Chrome versions < 39.0.2171.71mrmr1993
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-17Ensure cursor is hidden on scrollmrmr1993
2014-12-17Add comment re. Math.sign().Stephen Blott
2014-12-17Disable CursorHider pending fix for #1345.Stephen Blott
2014-12-17Revert 932652086c9ad601c92ef4aae250f9e0b6ad51a6.Stephen Blott
2014-12-17Ensure we only init CursorHider oncemrmr1993
2014-12-17Remove redundant array conversionmrmr1993
2014-12-17Combine rectangle calculation and clickable element detectionmrmr1993
2014-12-17Simplify finding clickable elementsmrmr1993
2014-12-17Inline DomUtils.getClickableElementsmrmr1993
2014-12-17Use the DOM rather than XPath to detect clickable elementsmrmr1993
2014-12-17Updated link should point to release notes.Stephen Blott
2014-12-17Merge branch 'master' into post-1.46Stephen Blott