mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-29 03:07:42 +01:00
HtmlVariableList support html on keys (#539)
This commit is contained in:
parent
27c3cc05ed
commit
29de66d4ef
@ -263,7 +263,7 @@ if (typeof(PhpDebugBar) == 'undefined') {
|
||||
className: csscls('kvlist htmlvarlist'),
|
||||
|
||||
itemRenderer: function(dt, dd, key, value) {
|
||||
$('<span />').attr('title', key).text(key).appendTo(dt);
|
||||
$('<span />').attr('title', $('<i />').html(key || '').text()).html(key || '').appendTo(dt);
|
||||
dd.html(value);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user