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/github.js

17 lines
350 B
JavaScript

function change_comments() {
inject_image('.comment-body');
}
function change_readme() {
inject_image('#readme');
}
$("button.btn[name='comment_and_close']").prev().on('click', change_comments);
$('.js-comment-container').on('load change', change_comments);
$('#readme').on('load change', change_readme);
change_comments();
change_readme();