Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Our static code analysis tool detected a trailing comma for the pointer_events
BAD:
fn.events = function() { this.pointer_events = { start: this.nsEvent('touchstart') + ' ' + this.nsEvent('mousedown'), move: this.nsEvent('touchmove') + ' ' + this.nsEvent('mousemove'), end: this.nsEvent('touchend') + ' ' + this.nsEvent('mouseup'), };
GOOD:
fn.events = function() { this.pointer_events = { start: this.nsEvent('touchstart') + ' ' + this.nsEvent('mousedown'), move: this.nsEvent('touchmove') + ' ' + this.nsEvent('mousemove'), end: this.nsEvent('touchend') + ' ' + this.nsEvent('mouseup') };
The text was updated successfully, but these errors were encountered:
fix issue ducksboard#469
d09dea2
remove trailing comma to be more IE compliant
Merge remote-tracking branch 'bfarka/gridster.js/fix-trailing-comma'
e7509f0
* bfarka/gridster.js/fix-trailing-comma: fix issue ducksboard#469
Merge pull request #3 from bfarka/fix-trailing-comma
5cd9a6a
No branches or pull requests
Our static code analysis tool detected a trailing comma for the pointer_events
BAD:
GOOD:
The text was updated successfully, but these errors were encountered: