scrollpath icon indicating copy to clipboard operation
scrollpath copied to clipboard

keyboard navigation triggers weird positioning effects

Open boneyfantaseas opened this issue 11 years ago • 3 comments

By using the down arrow key to scroll I get quite funny results in FF - didn't test in other browser although I guess it'll be a xbrowser issue. Up arrow key works fine. When entering a rotation the position is somehow lost or erroneous.

boneyfantaseas avatar Mar 26 '13 20:03 boneyfantaseas

locate the function| " function keyHandler( e ) { "

inside jquery.scrollpath.js and add: e.preventDefault();

so it looks like this:

function keyHandler( e ) {
    e.preventDefault();
    // Disable scrolling with keys when user has focus on text input elements
    if ( /^text/.test( e.target.type ) ) return;

... ...

misthero avatar Aug 26 '13 14:08 misthero

That was VERY helpfull, thanks!

gustavotheo avatar Apr 25 '14 20:04 gustavotheo

Hallo und Guten Tag,

vielen Dank für Ihre E-Mail. Ich werde bis einschließlich 04.05.2014 nicht im Büro erreichbar sein und keinen Zugriff auf meine E-Mails haben.

In dringenden Fällen kontaktieren Sie bitte meine Kollegen unter 0651-96680-73 oder per E-Mail an [email protected]. Ansonsten bearbeite ich meine E-Mails nach meiner Rückkehr.

Vielen Dank für Ihr Verständnis und freundliche Grüße,

Tino Feist

Hello and G'day

Thank you for your e-mail. I will be out of the office until 05th of May and will not have access to my e-mail account.

If you have an urgent query, please contact my colleagues via email [email protected] or phone +49 651-96680-73.

In all other cases I will get back to you after my return.

Thank you very much for your understanding and best regards,

Tino Feist

BoomSolWebDev avatar Apr 25 '14 20:04 BoomSolWebDev