Merge pull request #4630 from ajlomagno/fix-click-counter-persisting

Fixed click counter persisting
This commit is contained in:
Bryan Housel
2017-12-30 23:02:39 -05:00
committed by GitHub
+4 -1
View File
@@ -137,7 +137,7 @@ export function uiIntroWelcome(context, reveal) {
);
}
chapter.enter = function() {
welcome();
};
@@ -145,6 +145,9 @@ export function uiIntroWelcome(context, reveal) {
chapter.exit = function() {
listener.off();
var tooltip = d3_select('.curtain-tooltip.intro-mouse')
.selectAll('.counter')
.remove();
};