1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
hipchat-emoticons-for-all/src/injections/facebook.js

15 lines
454 B
JavaScript

function change_chat_tabs() {
$('._d97').each(function(){
for (var i = 0; i < image_decoder.length; i++) {
$(this).html($(this).html().replace(image_decoder[i][0],
"<img class='emoticon' style='height: 30px; width: 30px;' src='" + image_decoder[i][1] + "'/>"
));
}
});
}
$('.fbNubFlyout').on(
'DOMNodeInserted DOMNodeRemoved change load', function(event) {
change_chat_tabs();
});