Skip to content

Commit

Permalink
Merge pull request #1146 from lokonli/fixSaveSettings2
Browse files Browse the repository at this point in the history
fix: savesettings now correctly saves all settings
  • Loading branch information
lokonli authored Jan 22, 2024
2 parents 19b2ac1 + 0d02561 commit e1314b0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 4 additions & 0 deletions js/dt_function.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,3 +406,7 @@ function createDelayedFunction(timeout) {
}

}

function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
2 changes: 1 addition & 1 deletion js/loader.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 7 additions & 11 deletions js/settings.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1314b0

Please sign in to comment.