recentprojectblock.ui.js 442 B

12345678910111213141516
  1. $(function()
  2. {
  3. $('.recentproject-block .cards .project-stages-container').each(function()
  4. {
  5. var $container = $(this);
  6. var $row = $container.children();
  7. var totalWidth = 0;
  8. $row.children().each(function()
  9. {
  10. var $item = $(this);
  11. $item.css('left', totalWidth);
  12. totalWidth += $item.width();
  13. });
  14. $row.css('minWidth', totalWidth);
  15. });
  16. })