Files
Srikanth Chekuri c10639bd65 Add all lessons
2024-05-22 21:21:04 +05:30

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);
}