Skip to content

Commit

Permalink
chore: fixup jshint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maihde committed Jan 19, 2025
1 parent 5506f04 commit 893be87
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/tests.interactive-layer1d.js
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ interactiveTest('1d max-hold', 'does the plot have a max hold feature', function

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % 2048
offset = (offset + 200) % 2048;
}, 2000);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1557,7 +1557,7 @@ interactiveTest('1d max-hold negative', 'does the plot have a max hold feature t

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % 2048
offset = (offset + 200) % 2048;
}, 2000);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1597,7 +1597,7 @@ interactiveTest('1d max-hold no-decay', 'does the plot have a no-decay max hold

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % 2048
offset = (offset + 200) % 2048;
}, 2000);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1637,7 +1637,7 @@ interactiveTest('1d max-hold negative no-decay', 'does the plot have a no-decay

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % 2048
offset = (offset + 200) % 2048;
}, 2000);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1677,7 +1677,7 @@ interactiveTest('1d max-hold reset', 'does the plot have a max hold feature that

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % 2048
offset = (offset + 200) % 2048;
}, 2000);

window.setInterval(function() {
Expand All @@ -1689,7 +1689,7 @@ interactiveTest('1d max-hold reset', 'does the plot have a max hold feature that
dashed: true
}
}
})
});
}, 5000);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1743,7 +1743,7 @@ interactiveTest('1d max-hold change framesize', 'does the plot have a max hold f

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % framesize
offset = (offset + 200) % framesize;
}, 500);

ifixture.interval = window.setInterval(function() {
Expand Down Expand Up @@ -1794,7 +1794,7 @@ interactiveTest('1d max-hold change framesize hdrmod', 'does the plot have a max

var offset = 0;
window.setInterval(function() {
offset = (offset + 200) % framesize
offset = (offset + 200) % framesize;
}, 500);

ifixture.interval = window.setInterval(function() {
Expand Down

0 comments on commit 893be87

Please sign in to comment.