-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverse is not working #29
Comments
Wait, this does not solve the issue. It moves backward, but only once. After that it's blank. |
Was never able to get that option working. But if you just go to line 27 in marquee3k.js and hard code it: this.reverse = false; at least it will reverse. |
a quick "workaround" for this bug: |
This is great, but the minified version does not contain the fix. |
The min.js still does not contain the fix. Movement is always reversed. Changing the dataset has no effect. |
I had to change this line 88 to
const direction = this.reverse == 'true' ? -1 : 1;
The text was updated successfully, but these errors were encountered: