blob: a5c923ea4809f6bc91dca8693e6dbfc7a4679438 (
plain)
1
2
3
4
5
6
7
|
(() => {
const button = $('[data-reaction-button-id=<%= reaction_id_for @object %>]');
removeHoverTooltips(button);
button.html($('<%=j reaction_button @object %>').children());
setupHoverTooltips(button);
})();
|