common.js 427 B

12345678910111213141516171819
  1. $(function()
  2. {
  3. $object = $('.btn-toolbar.pull-left');
  4. while(true)
  5. {
  6. if($object.children(':first-child').hasClass('divider'))
  7. {
  8. $object.children(':first-child').remove();
  9. continue;
  10. }
  11. if($object.children(':last-child').hasClass('divider'))
  12. {
  13. $object.children(':last-child').remove();
  14. continue;
  15. }
  16. break;
  17. }
  18. })