readingbar icon indicating copy to clipboard operation
readingbar copied to clipboard

Local scope for "_"

Open johnbburg opened this issue 3 years ago • 0 comments

This line _ = $(this); declares "_" in the global namespace. Which will overwrite any variable with the same name. For example, underscore.js.

This should declare the variable using "var" or something, to set it in the local scope, and avoid any namespace clash.

johnbburg avatar Jul 29 '21 19:07 johnbburg