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