make config readonly
Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
This commit is contained in:
parent
3d298473b7
commit
aa3ec73b45
1 changed files with 7 additions and 4 deletions
11
js/config.js
11
js/config.js
|
@ -3,7 +3,10 @@
|
|||
*
|
||||
* Do NOT confuse with settings, which are modifiable by either the settings menu, or in the application itself.
|
||||
*/
|
||||
const config = {
|
||||
// Scroll Tick Limit (How much must scroll to reach next tick)
|
||||
wheelTickSize: 50,
|
||||
};
|
||||
const config = makeReadOnly(
|
||||
{
|
||||
// Scroll Tick Limit (How much must scroll to reach next tick)
|
||||
wheelTickSize: 50,
|
||||
},
|
||||
"config"
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue