GiveToken / GiftBox

Repository for Sizzle
0 stars 0 forks source link

[1119] Removes container when no videos #1121

Closed shreydesai closed 8 years ago

shreydesai commented 8 years ago

Referenced Issue

Fixes #1119

Description

Solves the issue where the container still remains when all videos have been removed.

screen shot 2016-07-15 at 9 58 10 am
// collapse container if there are no videos
  if ($('#company-video-container').children().length == 0) {
    $('#company-video-container').attr('hidden', true);
  }