You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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;
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,
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.
The text was updated successfully, but these errors were encountered: