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({
236
236
// via `window.localStorage`.
237
237
var FEATURES = {
238
238
querybuilder : true ,
239
+ 'First Run Tour' : false ,
239
240
'Connect with SSL' : false ,
240
241
'Connect with Kerberos' : false ,
241
242
'Connect with LDAP' : false ,
Original file line number Diff line number Diff line change @@ -50,7 +50,9 @@ var HomeView = View.extend({
50
50
} ,
51
51
render : function ( ) {
52
52
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
+ }
54
56
} ,
55
57
onInstanceFetched : function ( ) {
56
58
if ( app . instance . collections . length === 0 ) {
You can’t perform that action at this time.
0 commit comments