obvious-post-states/js/obvious-post-states.js

9 lines
234 B
JavaScript
Raw Normal View History

2014-09-30 22:40:12 +00:00
jQuery(document).ready(function( $ ) {
if (($('span.post-state').length != 0) && ($('span.post-state').parent().is('td') == false)) {
2014-09-30 22:40:12 +00:00
$('span.post-state').each(function() {
$(this).insertBefore($(this).parent());
});
}
});