Skip to content

Commit 893be87

Browse files
committed
chore: fixup jshint errors
1 parent 5506f04 commit 893be87

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/tests.interactive-layer1d.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@ interactiveTest('1d max-hold', 'does the plot have a max hold feature', function
15171517

15181518
var offset = 0;
15191519
window.setInterval(function() {
1520-
offset = (offset + 200) % 2048
1520+
offset = (offset + 200) % 2048;
15211521
}, 2000);
15221522

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

15581558
var offset = 0;
15591559
window.setInterval(function() {
1560-
offset = (offset + 200) % 2048
1560+
offset = (offset + 200) % 2048;
15611561
}, 2000);
15621562

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

15981598
var offset = 0;
15991599
window.setInterval(function() {
1600-
offset = (offset + 200) % 2048
1600+
offset = (offset + 200) % 2048;
16011601
}, 2000);
16021602

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

16381638
var offset = 0;
16391639
window.setInterval(function() {
1640-
offset = (offset + 200) % 2048
1640+
offset = (offset + 200) % 2048;
16411641
}, 2000);
16421642

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

16781678
var offset = 0;
16791679
window.setInterval(function() {
1680-
offset = (offset + 200) % 2048
1680+
offset = (offset + 200) % 2048;
16811681
}, 2000);
16821682

16831683
window.setInterval(function() {
@@ -1689,7 +1689,7 @@ interactiveTest('1d max-hold reset', 'does the plot have a max hold feature that
16891689
dashed: true
16901690
}
16911691
}
1692-
})
1692+
});
16931693
}, 5000);
16941694

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

17441744
var offset = 0;
17451745
window.setInterval(function() {
1746-
offset = (offset + 200) % framesize
1746+
offset = (offset + 200) % framesize;
17471747
}, 500);
17481748

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

17951795
var offset = 0;
17961796
window.setInterval(function() {
1797-
offset = (offset + 200) % framesize
1797+
offset = (offset + 200) % framesize;
17981798
}, 500);
17991799

18001800
ifixture.interval = window.setInterval(function() {

0 commit comments

Comments
 (0)