MediaWiki:Gadget-tooltipPopup-core.js

From RuneRealm Wiki

This is the current revision of this page, as edited by Alex (talk | contribs) at 12:06, 20 October 2024. The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

After saving, you may need to bypass your browser's cache to see the changes. For further information, see Wikipedia:Bypass your cache.

  • In most Windows and Linux browsers: Hold down Ctrl and press F5.
  • In Safari: Hold down ⇧ Shift and click the Reload button.
  • In Chrome and Firefox for Mac: Hold down both ⌘ Cmd+⇧ Shift and press R.
"use strict";

// Adapted from
// https://stackoverflow.com/questions/12539006/tooltips-for-mobile-browsers
function init() {
  $('.add-tooltip-popup').click(function () {
    var $title = $(this).find('.title');
    if (!$title.length) {
      // Remove any existing tooltips
      $('.add-tooltip-popup .title').remove();
      var tooltip = $(document.createElement('span'));
      tooltip.addClass('title').text($(this).attr('title'));
      tooltip.css('left', 0);
      $(this).append(tooltip);

      // Reposition offscreen tooltip
      var endPosition = tooltip.offset().left + tooltip.width();
      var windowWidth = $(window).width();
      var overflowAmount = Math.max(0, endPosition - windowWidth + 15); // leave 15px right padding
      tooltip.css('left', -overflowAmount);
    } else {
      $title.remove();
    }
  });
}
$(init);