Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ var state = new Application({
// via `window.localStorage`.
var FEATURES = {
querybuilder: true,
'First Run Tour': false,
'Connect with SSL': false,
'Connect with Kerberos': false,
'Connect with LDAP': false,
Expand Down
4 changes: 3 additions & 1 deletion src/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ var HomeView = View.extend({
},
render: function() {
this.renderWithTemplate(this);
this.renderSubview(new TourView(), this.queryByHook('tour-container'));
if (app.isFeatureEnabled('First Run Tour')) {
this.renderSubview(new TourView(), this.queryByHook('tour-container'));
}
},
onInstanceFetched: function() {
if (app.instance.collections.length === 0) {
Expand Down