MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Alexkar598 (talk | contribs) (Only remove the css rule after the reflow ahppened) |
Alexkar598 (talk | contribs) (Use a fixed timer instead because waiting for the next animation frame does not work) |
||
Line 5: | Line 5: | ||
if($(".tooltip").length) { | if($(".tooltip").length) { | ||
document.styleSheets[0].insertRule(".tooltiptext {top:0}"); | document.styleSheets[0].insertRule(".tooltiptext {top:0}"); | ||
window. | window.setTimeout(function() { | ||
document.styleSheets[0].deleteRule(0); | document.styleSheets[0].deleteRule(0); | ||
}) | }, 500) | ||
} | } |
Latest revision as of 21:50, 27 July 2022
/* Any JavaScript here will be loaded for all users on every page load. */ /* Firefox tooltip patch. Forces a reflow or something */ if($(".tooltip").length) { document.styleSheets[0].insertRule(".tooltiptext {top:0}"); window.setTimeout(function() { document.styleSheets[0].deleteRule(0); }, 500) }