MediaWiki:Gadget-ReferenceTooltips.js: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
Krinkle (bicara | kontrib)
Maintenance: mw:RL/MGU - Updated deprecated module name
Jon (WMF) (bicara | kontrib)
maintenance: more info NotFoundError: Node.removeChild: The node to be removed is not a child of this node
Baris 56:
if( tooltipNode && tooltipNode.parentNode == document.body ) {
hideTimer = setTimeout( function() {
$(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) });
if(tooltipNode.parentNode) {
document.body.removeChild( tooltipNode );
}
});
}, isTouchscreen ? 16 : 100);
} else {