1030504f92
Version 1.0.1 * Added compatibility with the Slate admin theme plugin.
9 lines
234 B
JavaScript
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());
|
|
});
|
|
}
|
|
|
|
}); |