Fixed smooth scrolling in task and ticket comments, which does not work in Safari

This commit is contained in:
Manuel Cillero 2017-09-06 17:18:55 +02:00
parent c3e1439b06
commit 42164e7778

View file

@ -92,7 +92,7 @@ function nodecomment_form_alter(&$form, &$form_state, $form_id) {
}
if (in_array($type, nodecomment_get_comment_types())) {
drupal_add_js('$jq(\'html\').delay(100).animate({scrollTop:$("#node-form").offset().top},2400);', 'inline', 'footer');
drupal_add_js('$jq(function(){$(\'html,body\').animate({scrollTop:$("#node-form").offset().top},2000);});', 'inline', 'footer');
}
}