Created
July 5, 2017 23:20
-
-
Save alvr/f1326b8944acdd69b563652d86559cf4 to your computer and use it in GitHub Desktop.
This file contains 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 characters
(function() { | |
function center_el(tagName) { | |
var tags = document.getElementsByTagName(tagName), i, tag; | |
for (i = 0; i < tags.length; i++) { | |
tag = tags[i]; | |
var parent = tag.parentElement; | |
// center an image if it is the only element of its parent | |
if (parent.childNodes.length === 1) { | |
// if there is a link on image, check grandparent | |
if (parent.nodeName === 'A') { | |
parent = parent.parentElement; | |
if (parent.childNodes.length != 1) continue; | |
} | |
if (parent.nodeName === 'P') parent.style.textAlign = 'center'; | |
} | |
} | |
} | |
var tagNames = ['img', 'embed', 'object']; | |
for (var i = 0; i < tagNames.length; i++) { | |
center_el(tagNames[i]); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment