User:Wookipan/Sandbox/Page.js

From Team Fortress Wiki
< User:Wookipan‎ | Sandbox
Revision as of 21:52, 1 September 2023 by Wookipan (talk | contribs) (Created page with "var wikiTooltip = { init: function() { var $tooltips = $('#tooltip .tooltip-content'); if ($tooltips[0]) { $tooltips.each(function() {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
var wikiTooltip = {
    init: function() {
        var $tooltips = $('#tooltip .tooltip-content');
        
        if ($tooltips[0]) {
            $tooltips.each(function() {
                var $this = $(this);
                
                edgeRect = $this.width() + $this.offset().left;
                widthRect = $(window).width();
                if (edgeRect - widthRect > $this.width()*0) {
                    $this.css('left', '');
                    $this.css('right', '10px');
                }
            });
        }
    }
};
$(wikiTooltip.init);