WebUI: prefer arrow functions whenever applicable
commit72cbc83569bb48fa61b55851c83bedeb1e9c6f01
authorChocobo1 <Chocobo1@users.noreply.github.com>
Thu, 31 Oct 2024 20:17:41 +0000 (1 04:17 +0800)
committerGitHub <noreply@github.com>
Thu, 31 Oct 2024 20:17:41 +0000 (1 04:17 +0800)
tree8d2abc0fdd663c687b9a3c575696602da9a21223
parent7af6ac18aa7a6aafc90793b8bc86b60748064d2d
WebUI: prefer arrow functions whenever applicable

Compared to plain function, arrow function is simpler to understand (without bindings to `this`, `arguments`, `super`) and to read.
Now, plain function will only be used when this object is required.

PR #21691.
49 files changed:
src/webui/www/eslint.config.mjs
src/webui/www/package.json
src/webui/www/private/addpeers.html
src/webui/www/private/addtrackers.html
src/webui/www/private/addwebseeds.html
src/webui/www/private/confirmtrackerdeletion.html
src/webui/www/private/downloadlimit.html
src/webui/www/private/edittracker.html
src/webui/www/private/editwebseed.html
src/webui/www/private/newcategory.html
src/webui/www/private/newtag.html
src/webui/www/private/rename.html
src/webui/www/private/rename_file.html
src/webui/www/private/rename_files.html
src/webui/www/private/scripts/client.js
src/webui/www/private/scripts/contextmenu.js
src/webui/www/private/scripts/download.js
src/webui/www/private/scripts/dynamicTable.js
src/webui/www/private/scripts/file-tree.js
src/webui/www/private/scripts/filesystem.js
src/webui/www/private/scripts/localpreferences.js
src/webui/www/private/scripts/misc.js
src/webui/www/private/scripts/mocha-init.js
src/webui/www/private/scripts/pathAutofill.js
src/webui/www/private/scripts/piecesbar.js
src/webui/www/private/scripts/progressbar.js
src/webui/www/private/scripts/prop-files.js
src/webui/www/private/scripts/prop-general.js
src/webui/www/private/scripts/prop-peers.js
src/webui/www/private/scripts/prop-trackers.js
src/webui/www/private/scripts/prop-webseeds.js
src/webui/www/private/scripts/rename-files.js
src/webui/www/private/scripts/search.js
src/webui/www/private/scripts/speedslider.js
src/webui/www/private/setlocation.html
src/webui/www/private/shareratio.html
src/webui/www/private/uploadlimit.html
src/webui/www/private/views/aboutToolbar.html
src/webui/www/private/views/confirmRecheck.html
src/webui/www/private/views/confirmdeletion.html
src/webui/www/private/views/cookies.html
src/webui/www/private/views/filters.html
src/webui/www/private/views/installsearchplugin.html
src/webui/www/private/views/log.html
src/webui/www/private/views/preferences.html
src/webui/www/private/views/preferencesToolbar.html
src/webui/www/private/views/searchplugins.html
src/webui/www/private/views/transferlist.html
src/webui/www/public/scripts/login.js