Summarize Popout placement (#4615) $('body').append(newElement); -> $('#movingDivs').append(newElement);

d3019c7d49ee513a465346655df5f708352fe3b6

IceFog72 <164350516+IceFog72@users.noreply.github.com>

Signed
1 files changed, +1 -1Ignore whitespace
public/scripts/extensions/memory/index.js+1 -1
@@ -993,7 +993,7 @@ function doPopout(e) {
993 originalElement.empty();993 originalElement.empty();
994 originalElement.html('<div class="flex-container alignitemscenter justifyCenter wide100p"><small>Currently popped out</small></div>');994 originalElement.html('<div class="flex-container alignitemscenter justifyCenter wide100p"><small>Currently popped out</small></div>');
995 newElement.append(controlBarHtml).append(originalHTMLClone);995 newElement.append(controlBarHtml).append(originalHTMLClone);
996 $('body').append(newElement);996 $('#movingDivs').append(newElement);
997 newElement.transition({ opacity: 1, duration: animation_duration, easing: animation_easing });997 newElement.transition({ opacity: 1, duration: animation_duration, easing: animation_easing });
998 $('#summaryExtensionDrawerContents').addClass('scrollableInnerFull');998 $('#summaryExtensionDrawerContents').addClass('scrollableInnerFull');
999 setMemoryContext(prevSummaryBoxContents, false); //paste prev summary box contents into popout box999 setMemoryContext(prevSummaryBoxContents, false); //paste prev summary box contents into popout box