Sha256: 6534047344c9ecf9c2fd65742ae7994a32a3dd8678051c43b9cc0823cddc67cd
Contents?: true
Size: 395 Bytes
Versions: 31
Compression:
Stored size: 395 Bytes
Contents
/* eslint-disable no-invalid-this */ $(() => { $(".vote-button-caption").mouseover(function () { const replaceText = $(this).data("replace"); if (replaceText) { $(this).text(replaceText); } }); $(".vote-button-caption").mouseout(function () { const originalText = $(this).data("original"); if (originalText) { $(this).text(originalText); } }); })
Version data entries
31 entries across 31 versions & 1 rubygems