Display inherit trickery
JavaScript
/*
So here's the thing - Let's say you wanted to use this function (https://gist.github.com/1438197) to add animate.css classes to an element - it tests for visibility: hidden and sets it to visible if it is hidden in your CSS. But what about display: none?
You can't just set it as display: block or whatever, because it might be inline or inline-block or table or whatever! GAH!
So it turns out that using display: inherit; inline not only overrides the display: none in the CSS, but it also sets it to display using the element's natural display method. YAY!
No doubt you all knew this already, but I didn't and I found it really cool.
ONWARDS. Your friend, @_dte.
*/