Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keyboard navigation triggers weird positioning effects #26

Open
boneyfantaseas opened this issue Mar 26, 2013 · 3 comments
Open

keyboard navigation triggers weird positioning effects #26

boneyfantaseas opened this issue Mar 26, 2013 · 3 comments

Comments

@boneyfantaseas
Copy link

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.

@misthero
Copy link

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;

...
...

@gustavotheo
Copy link

That was VERY helpfull, thanks!

@BoomSolWebDev
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants