-
Notifications
You must be signed in to change notification settings - Fork 818
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
Changed to for in for loops #3006
Conversation
@@ -187,19 +187,19 @@ function Blocks(activity) { | |||
|
|||
let palette; | |||
// Regenerate all of the artwork at the new scale. | |||
for (let blk = 0; blk < this.blockList.length; blk++) { | |||
this.blockList[blk].resize(scale); | |||
for (blk in this.blockList) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing let
} | ||
|
||
this.findStacks(); | ||
for (let stack = 0; stack < this.stackList.length; stack++) { | ||
this.adjustDocks(this.stackList[stack], true); | ||
for (stack in this.stackList) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing let
for (let blk = 0; blk < this.blockList.length; blk++) { | ||
if (this.blockList[blk].trash) { | ||
this.blockList[blk].hide(); | ||
for (blk in this.blockList.length) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing let
Sorry that O overlooked this PR. Please see my recommendations. |
Changed a few for loops to for in loops to match ES6 syntax
ticket #2629