Skip to content

Commit 7b14f6c

Browse files
author
James Moriarty
committed
refinement: js vars.
1 parent 1254fdd commit 7b14f6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
var ImageList = React.createClass({
125125
render: function() {
126-
var imageNodes = this.props.images.map(function (image) {
126+
var images = this.props.images.map(function (image) {
127127
return (
128128
<div className="image">
129129
<a target="_blank" href={image.href}>
@@ -135,7 +135,7 @@
135135
});
136136
return (
137137
<div className="imageList">
138-
{imageNodes}
138+
{images}
139139
</div>
140140
);
141141
}

0 commit comments

Comments
 (0)