Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix no-undef lint in src/plugins/dragresize_ie11.js
``` src/plugins/dragresize_ie.js 1410:5 error 'moveRatio' is not defined no-undef ``` This is another "no-undef" "bug" but not like the ones in #1025 and #1026. Here we have something that is missing a `let` keyword, but it turns out variable is unused anyway, so I just removed it. Last use was removed in d6145d2, I believe. Test plan: `npm run dev && npm run test && npm run start` Related: #990
- Loading branch information