Jump to content

MediaWiki:Common.js: Difference between revisions

Fix for <imagemap>s to prevent them from resizing
No edit summary
(Fix for <imagemap>s to prevent them from resizing)
Line 15: Line 15:
});
});
/* End Adobe Analytics Tracking Details */
/* End Adobe Analytics Tracking Details */
/* Fix for <imagemap>s to prevent them from resizing  */
$('[usemap]').each(function() {
    $(this).css('min-width', $(this).attr('width'));
});