Yup. The JavaScript call is there and it loads. Maybe it’s something I’ve omitted in my comments callback? Here’s the code.
function steelfrog_comments($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
<div class="comment_info">
<div class="gravatar">
<?php echo get_avatar($comment,$size='50',$default='<path_to_url>' ); ?>
</div>
<div class="comment_poster">
<h5><?php comment_author_link(); ?></h5>
<span><?php printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?></span>
</div>
<div class="comment_options">
<ul class="options">
<li class="reply"><?php comment_reply_link(); ?></li>
<li class="quote"><a href="#" title="Quote and reply this comment"><span>Quote this comment</span></a></li>
<li class="link"><a href="#" title="Link to this comment"><span>Link to this comment</span></a></li>
<li class="website"><a href="#" title="Website of commenter"><span>Website of commenter</span></a></li>
<li class="edit"><a href="<?php echo get_edit_comment_link() ?>" title="Edit this comment"><span>Edit this comment</span></a></li>
<li class="close"><a href="#" title="Toggle this comment"><span>Toggle this comment</span></a></li>
</ul>
</div>
</div>
<div class="comment_content">
<?php comment_text() ?>
</div>
<?php }
[EDIT] Running echo get_comment_reply_link()
gets me no output either.