Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit e475dd3

Browse files
committed
Add missing var declarator
1 parent e313276 commit e475dd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

oval_graph/parts/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ $("#close").click(function () {
141141
var data = JSON.parse(JSON.stringify(data_of_tree));
142142

143143
jQuery.each(data, function (rule, data) {
144-
rule_id = "#" + rule.replace(/[\_\-\.]/g, "");
144+
var rule_id = "#" + rule.replace(/[\_\-\.]/g, "");
145145
show_graph(rule_id, data);
146146
});
147147

0 commit comments

Comments
 (0)