diff --git a/evennia/web/webclient/static/webclient/js/plugins/options.js b/evennia/web/webclient/static/webclient/js/plugins/options.js index d3b6d13158..1a92e94e6d 100644 --- a/evennia/web/webclient/static/webclient/js/plugins/options.js +++ b/evennia/web/webclient/static/webclient/js/plugins/options.js @@ -137,7 +137,7 @@ let options_plugin = (function () { // is helppopup set? and if so, does this Text have type 'help'? if ('helppopup' in options && options['helppopup'] ) { if (kwargs && ('type' in kwargs) && (kwargs['type'] == 'help') ) { - $('#helpdialogcontent').append('
'+ args + '
'); + $('#helpdialogcontent').prepend('
'+ args + '
'); plugins['popups'].togglePopup("#helpdialog"); return true; }