Commit 35c36090 authored by Arnaud Fontaine's avatar Arnaud Fontaine

ERP5Workflow: Fix test_javascript_lint.

parent 87289ded
......@@ -357,11 +357,11 @@
if (edge_data.name) {
label = edge_data.name;
if (edge_data.path) {
label = label.link(edge_data.path)
label = label.link(edge_data.path);
}
}
if (edge_data.name_path_dict) {
var linked_name_list = []
var linked_name_list = [];
for (var name in edge_data.name_path_dict) {
linked_name_list.push(name.link(edge_data.name_path_dict[name]));
}
......
......@@ -14,7 +14,7 @@ Can be used as a plain script, a node.js module or an AMD module.
Script tag usage
----------------
<script src=//cdnjs.cloudflare.com/ajax/libs/seedrandom/2.3.10/seedrandom.min.js>
<script src="//cdnjs.cloudflare.com/ajax/libs/seedrandom/2.3.10/seedrandom.min.js">
</script>
// Sets Math.random to a PRNG initialized using the given explicit seed.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment