-
-
Save MollsAndHersh/cf0ba75d1de02052cc6bda7029121e64 to your computer and use it in GitHub Desktop.
Revisions
-
guregu created this gist
Oct 17, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ function fixImageMaps(force) { var imgs = document.querySelectorAll("img[usemap]"); [].forEach.call(imgs, function(img) { if (!img.naturalHeight) { return; } var h = img.height / img.naturalHeight; var w = img.width / img.naturalWidth; var map = document.getElementsByName(img.useMap.slice(1))[0]; if (!map) { return; } for (var i = 0; i < map.children.length; i++) { var area = map.children[i]; if (!area.coords) { continue; } var coords = area.coords; if (!area.originalCoords) { area.originalCoords = coords; } else { coords = area.originalCoords; } var split = coords.split(",") var fixed = ""; split.forEach(function(coord, n) { if (n != 0) { fixed += ","; } fixed += n % 2 == 0 ? Number(coord) * w : Number(coord) * h; }) area.coords = fixed; } }); } window.onresize = fixImageMaps; window.onload = fixImageMaps;