diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:02:39 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:34:29 +0000 |
| commit | 39182a76e4070d3b92af10bf609fef8151bce6e4 (patch) | |
| tree | 806c6e1b1ab421a2631f5e9062a8988480f8ba31 /js/prefs.js | |
| parent | 1299d632bdc8b676d3fc2114a1788a2f8f63597c (diff) | |
Address ESLint rule 'eqeqeq'.
https://eslint.org/docs/latest/rules/eqeqeq
Diffstat (limited to 'js/prefs.js')
| -rwxr-xr-x | js/prefs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/prefs.js b/js/prefs.js index 8f4f45700..0fb70f710 100755 --- a/js/prefs.js +++ b/js/prefs.js @@ -63,7 +63,7 @@ require(["dojo/_base/kernel", try { App.init(parser, true); } catch (e) { - if (typeof App != "undefined" && App.Error) + if (typeof App !== "undefined" && App.Error) App.Error.report(e); else alert(e + "\n\n" + e.stack); |