Skip to content

Commit 0a6c4df

Browse files
committed
nit var naming
1 parent aad30d1 commit 0a6c4df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/2secrets.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ function setup() {
3131
}
3232

3333
function addSvgsToCells(size, padding) {
34-
$(".cell").each(function (index, object) {
34+
$(".cell").each(function (i, o) {
3535
var two = new Two({
3636
width: size + padding,
3737
height:size + padding
38-
}).appendTo(object);
38+
}).appendTo(o);
3939
var shape = pickFlower(shapes);
4040
shape.translation.set(two.width / 2, two.height / 2);
4141
two.add(shape);

0 commit comments

Comments
 (0)