diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-30 14:44:10 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-30 14:44:10 +1000 |
| commit | 5af08938d47504cfc45d125b2ae9898534a1e5a1 (patch) | |
| tree | e137a40fde6821b62533d941bb836309497d3335 /src/App.vue | |
| parent | 5412fb6a567bd573bfd72d7f2ec471a5f2cbb6a6 (diff) | |
Add ui-option touchDevice
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index ab16c00..0cf2df0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -788,7 +788,7 @@ export default defineComponent({ } for (let prop of Object.getOwnPropertyNames(uiOpts) as (keyof UiOptions)[]){ let item = localStorage.getItem('UI ' + prop); - //Not: Using JSON.stringify here to roughly deep-compare values + //Note: Using JSON.stringify here to roughly deep-compare values if (item == null && JSON.stringify(this.uiOpts[prop]) != JSON.stringify(uiOpts[prop])){ this.uiOpts[prop] = uiOpts[prop]; if (prop == 'useReducedTree'){ |
