obvious-post-states/js/obvious-post-states.js
Ryan 1030504f92 Version 1.0.1
Version 1.0.1

* Added compatibility with the Slate admin theme plugin.
2014-10-15 16:23:39 -07:00

9 lines
234 B
JavaScript

jQuery(document).ready(function( $ ) {
if (($('span.post-state').length != 0) && ($('span.post-state').parent().is('td') == false)) {
$('span.post-state').each(function() {
$(this).insertBefore($(this).parent());
});
}
});