Re: [Vimprobable-users] Vimprobable2 on Debian Testing
Vimprobable is a lean web browser optimised for full keyboard control
Brought to you by:
hanness
|
From: Serge E. H. <se...@ha...> - 2014-02-25 17:53:57
|
Quoting Hannes Schüller (ha...@yl...):
> Hi,
>
> since this troubling effect turned up on IRC again, I'd like to try and
> dig a little deeper still. Of course, the issue is still that I can't
> reproduce the behaviour myself. To identify a possible cause, I made a
> small patch (attached). It would be great if anyone who experienced the
> issue of the non-working F in the past could try it out.
>
> Warning: This is not supposed to be a serious patch for production
> environments! It will break other things, like links controlled
> primarily through Javascript. This is only for testing purposes!
>
> Hannes
> diff --git a/hinting.js b/hinting.js
> index 4997cae..58e682a 100644
> --- a/hinting.js
> +++ b/hinting.js
> @@ -386,11 +386,12 @@ function Hints() {
> var oldTarget = elem.target;
>
> /* set target to open in new window */
> - elem.target = "_blank";
> + /*elem.target = "_blank";
> _clickElement(elem);
> elem.target = oldTarget;
>
> - return "done;";
> + return "done;";*/
> + return "tabopen;" + elem.href;
> }
>
> /* fire moudedown and click event on given element */
Yup, with this change F works.
|