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

19 lines
454 B
JavaScript
Raw Normal View History

function change_comments() {
inject_image('.comment-body');
}
2015-08-24 14:57:19 +01:00
function change_readme() {
inject_image('#readme');
2015-08-24 14:57:19 +01:00
}
$('.js-comment-container').on('load change', change_comments);
$('#readme').on('load change', change_readme);
$('.timeline-comment textarea[placeholder="Leave a comment"]').on('change input', function() {
2015-08-25 14:28:29 +01:00
markdown_injector('.timeline-comment textarea[placeholder="Leave a comment"]');
});
change_comments();
change_readme();