readingbar
readingbar copied to clipboard
Local scope for "_"
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.