MediaWiki:Gadget-ExplainTooltips.js

From the Super Mario Wiki, the Mario encyclopedia
Revision as of 16:01, May 16, 2019 by Porplemontage (talk | contribs)
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Make it so users can click on "explain" spans to toggle their content.
   Useful for mobile users, since there's no mouse-over. */

function toggleExplain(e) {
  var old = e.getAttribute('oldContent');
  if (old && old.length > 0) {
    e.innerHTML = old;
    e.setAttribute('oldContent', '');
    e.style.borderBottom = '1px dotted';
  } else {
    e.setAttribute('oldContent', e.innerHTML);
    e.innerHTML = e.getAttribute('title');
    e.style.borderBottom = '1px dashed';
  }
}

$(function() {
 var explain_spans = document.getElementsByClassName('explain');
 for (var e = 0; e < explain_spans.length; e++) {
   explain_spans[e].onclick = function(){ toggleExplain(this); };
 }
});