mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 03:48:53 +00:00
[ticket/17326] Change jquery selector to use this in keyup function
PHPBB-17326
This commit is contained in:
parent
5ba1c783b7
commit
beabaa43e7
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ function parse_document(container)
|
|||
|
||||
// Live update BBCode font icon preview
|
||||
$('#bbcode_font_icon').on('keyup', function(e) {
|
||||
$('#bbcode_icon_preview').attr('class', "o-icon o-icon-font fa-fw fas icon fa-" + $('#bbcode_font_icon').val());
|
||||
$('#bbcode_icon_preview').attr('class', "o-icon o-icon-font fa-fw fas icon fa-" + $(this).val());
|
||||
});
|
||||
});
|
||||
})(jQuery);
|
||||
|
|
Loading…
Add table
Reference in a new issue