Attach intro to id-container, not document.body

(re: #3925)
This commit is contained in:
Bryan Housel
2017-03-23 22:37:14 -04:00
parent 85be712e03
commit 7432db7848
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ export function uiHelp(context) {
function clickWalkthrough() {
d3.select(document.body).call(uiIntro(context));
context.container().call(uiIntro(context));
setVisible(false);
}
+1 -1
View File
@@ -44,7 +44,7 @@ export function uiSplash(context) {
.append('button')
.attr('class', 'walkthrough col6')
.on('click', function() {
d3.select(document.body).call(uiIntro(context));
context.container().call(uiIntro(context));
modalSelection.close();
});