File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,7 @@ var state = new Application({
236236// via `window.localStorage`.
237237var FEATURES = {
238238 querybuilder : true ,
239+ 'First Run Tour' : false ,
239240 'Connect with SSL' : false ,
240241 'Connect with Kerberos' : false ,
241242 'Connect with LDAP' : false ,
Original file line number Diff line number Diff line change @@ -50,7 +50,9 @@ var HomeView = View.extend({
5050 } ,
5151 render : function ( ) {
5252 this . renderWithTemplate ( this ) ;
53- this . renderSubview ( new TourView ( ) , this . queryByHook ( 'tour-container' ) ) ;
53+ if ( app . isFeatureEnabled ( 'First Run Tour' ) ) {
54+ this . renderSubview ( new TourView ( ) , this . queryByHook ( 'tour-container' ) ) ;
55+ }
5456 } ,
5557 onInstanceFetched : function ( ) {
5658 if ( app . instance . collections . length === 0 ) {
You can’t perform that action at this time.
0 commit comments