Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 6f4536e

Browse files
committed
prevent discover tooltip from appearing when it shouldn't
1 parent 2d44ef3 commit 6f4536e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

js/views/pageNavVw.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ module.exports = baseVw.extend({
110110
this.handleSocketMessage(response);
111111
});
112112

113-
this.listenTo(window.obEventBus, "onboarding-complete", function(){
114-
this.showDiscoverIntro();
115-
});
116-
117113
this.listenTo(window.obEventBus, "cleanNav", function(){
118114
this.cleanNav();
119115
});
@@ -128,6 +124,7 @@ module.exports = baseVw.extend({
128124

129125
showDiscoverIntro: function(){
130126
this.$('.js-OnboardingIntroDiscoverHolder').removeClass('hide');
127+
this.showDiscIntro = false;
131128
},
132129

133130
hideDiscoverIntro: function(){

0 commit comments

Comments
 (0)