Skip to content

Commit

Permalink
Minor changes to default App preferences JS object.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Feb 8, 2018
1 parent d0649c9 commit 2c9847a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ window.GoAccess = window.GoAccess || {
this.AppWSConn = (this.opts || {}).wsConnection || {}; // WebSocket connection
this.i18n = (this.opts || {}).i18n || {}; // i18n report labels
this.AppPrefs = {
'theme': 'darkBlue',
'perPage': 7,
'layout': 'horizontal',
'autoHideTables': true,
'layout': 'horizontal',
'perPage': 7,
'theme': 'darkBlue',
};
this.AppPrefs = GoAccess.Util.merge(this.AppPrefs, this.opts.prefs);

Expand Down

0 comments on commit 2c9847a

Please sign in to comment.