Skip to content

Commit 8731e79

Browse files
committed
declare variable
1 parent 01b5235 commit 8731e79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsgraphs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var jsgraphs = jsgraphs || {};
7171

7272
Stack.prototype.toArray = function() {
7373
var result = [];
74-
x = this.first;
74+
var x = this.first;
7575
while (x != null) {
7676
result.push(x.value);
7777
x = x.next;

0 commit comments

Comments
 (0)