Fixed smooth scrolling in task and ticket comments, which does not work in Safari
This commit is contained in:
parent
c3e1439b06
commit
42164e7778
1 changed files with 29 additions and 29 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue