_handleLoadNextComments: function() {
if (this._displayedComments < this._container.data('comments')) {
if (this._loadNextComments === null) {
- this._loadNextComments = $('<li class="commentLoadNext"><button class="buttonPrimary small">' + WCF.Language.get('wcf.comment.more') + '</button></li>').appendTo(this._container);
+ this._loadNextComments = $('<li class="commentLoadNext"><button class="small">' + WCF.Language.get('wcf.comment.more') + '</button></li>').appendTo(this._container);
this._loadNextComments.children('button').click($.proxy(this._loadComments, this));
}