We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4744e commit 04c445aCopy full SHA for 04c445a
short_example/proc.js
@@ -43,12 +43,12 @@ function fillTable() {
43
newContent += "<tr><td title=\"" + val.description + "\">" + val.title + "</td>";
44
var url = "";
45
for (var subAxis of rawData.axes) {
46
- if (subAxis.id == y) {
47
- url += "/" + val.key;
48
- }
49
- else if (subAxis.id == x) {
+ if (subAxis.id == x) {
50
url += "/{X}"
51
}
+ else if (subAxis.id == y) {
+ url += "/" + val.key;
+ }
52
else {
53
var valSelectedKey;
54
for (var subVal of subAxis.values) {
0 commit comments