We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Christopher
There is an error when trying to edit the hex code input :
e is undefined http://dev.cbeloch.de/mooRainbow/Source/mooRainbow.js Line 344
This might have something to do with the new versions of Mootools since it worked before.
Thanks!
Martin
The text was updated successfully, but these errors were encountered:
Quick fix :
//el.addEvent('keydown', this.eventKeydown.bind(this, el)); el.addEvent('keydown', function (e) { this.eventKeydown(el, e); }.bind(this)); //el.addEvent('keyup', this.eventKeyup.bind(this, el)); el.addEvent('keyup', function (e) { this.eventKeyup(el, e); }.bind(this));
The bind function, when used with arguments, seems to overwrite the event argument eventKeyup() should receive.
Sorry, something went wrong.
I've fixed this in my pull request #6 - Thanks for this code :)
No branches or pull requests
Hi Christopher
There is an error when trying to edit the hex code input :
e is undefined
http://dev.cbeloch.de/mooRainbow/Source/mooRainbow.js
Line 344
This might have something to do with the new versions of Mootools since it worked before.
Thanks!
Martin
The text was updated successfully, but these errors were encountered: