VRFS-1915 fixed Find Session bug where first session in each section was not being cleared out when refreshing the list resulting in duplicates

This commit is contained in:
Brian Smith 2014-07-12 18:34:06 -04:00
parent a7621b0326
commit 1c32702bba
1 changed files with 2 additions and 2 deletions

View File

@ -314,12 +314,12 @@
currentActiveSessionsPage = 0;
$noMoreActiveSessions.hide();
$asScroller.infinitescroll('resume');
$('table#sessions-active').children(':not(:first-child)').remove();
$('table#sessions-active').empty();
currentScheduledSessionsPage = 0;
$noMoreScheduledSessions.hide();
$ssScroller.infinitescroll('resume');
$('table#sessions-scheduled').children(':not(:first-child)').remove();
$('table#sessions-scheduled').empty();
}
function events() {