Skip to content

Commit

Permalink
fix(chore): identical debug defaults for all modules
Browse files Browse the repository at this point in the history
calendar and checkbox had different default value for debug settings than every other module which this PR now makes unique
  • Loading branch information
lubber-de committed Aug 19, 2022
1 parent 75cb2d5 commit e6828e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/definitions/modules/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ $.fn.calendar.settings = {
silent: false,
debug: false,
verbose: false,
performance: false,
performance: true,

type : 'datetime', // picker type, can be 'datetime', 'date', 'time', 'month', or 'year'
firstDayOfWeek : 0, // day for first day column (0 = Sunday)
Expand Down
2 changes: 1 addition & 1 deletion src/definitions/modules/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ $.fn.checkbox.settings = {

silent : false,
debug : false,
verbose : true,
verbose : false,
performance : true,

// delegated event context
Expand Down

0 comments on commit e6828e7

Please sign in to comment.