mirror of
https://github.com/SigNoz/opentelemetry-python-example.git
synced 2025-07-27 17:24:20 +08:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
window.onload = function() {
|
|
// Set the size of the rendered Emojis
|
|
// This can be set to 16x16, 36x36, or 72x72
|
|
twemoji.size = '16x16';
|
|
// Parse the document body and
|
|
// insert <img> tags in place of Unicode Emojis
|
|
twemoji.parse(document.body);
|
|
}
|