Commit 7453c32 1 parent 17fd95f commit 7453c32 Copy full SHA for 7453c32
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11
11
<b >{{ device && device.name }}</b >
12
12
</div >
13
13
<div class =" mapboxgl-ctrl-timeline__control" style =" flex-grow : 1 " >
14
+ <!-- suppress CssUnknownTarget -->
14
15
<button
15
16
class =" mapboxgl-ctrl-icon svg-button"
16
- style =" /* noinspection CssUnknownTarget */ background-image : url (' backward.svg' )"
17
+ style =" background-image : url (' backward.svg' )"
17
18
@click =" (i - 1 >= 0) && i--"
18
19
/>
19
20
<button
20
21
class =" mapboxgl-ctrl-icon svg-button"
21
22
:style =" `background-image: url('${playing ? 'pause' : 'play'}.svg')`"
22
23
@click =" playing = !playing"
23
24
/>
25
+ <!-- suppress CssUnknownTarget -->
24
26
<button
25
27
class =" mapboxgl-ctrl-icon svg-button"
26
- style =" /* noinspection CssUnknownTarget */ background-image : url (' forward.svg' )"
28
+ style =" background-image : url (' forward.svg' )"
27
29
@click =" (i + 1 < path.length) && i++"
28
30
/>
29
31
<div class =" mapboxgl-ctrl-timeline__label" >
You can’t perform that action at this time.
0 commit comments