2023-05-16 10:47:08 +08:00

20 lines
427 B
JavaScript

$(function()
{
$object = $('.btn-toolbar.pull-left');
while(true)
{
if($object.children(':first-child').hasClass('divider'))
{
$object.children(':first-child').remove();
continue;
}
if($object.children(':last-child').hasClass('divider'))
{
$object.children(':last-child').remove();
continue;
}
break;
}
})