Skip to content

Commit 7453c32

Browse files
committed
filter geofences
1 parent 17fd95f commit 7453c32

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pages/index.vue

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,21 @@
1111
<b>{{ device && device.name }}</b>
1212
</div>
1313
<div class="mapboxgl-ctrl-timeline__control" style="flex-grow: 1">
14+
<!--suppress CssUnknownTarget -->
1415
<button
1516
class="mapboxgl-ctrl-icon svg-button"
16-
style="/*noinspection CssUnknownTarget*/background-image: url('backward.svg')"
17+
style="background-image: url('backward.svg')"
1718
@click="(i - 1 >= 0) && i--"
1819
/>
1920
<button
2021
class="mapboxgl-ctrl-icon svg-button"
2122
:style="`background-image: url('${playing ? 'pause' : 'play'}.svg')`"
2223
@click="playing = !playing"
2324
/>
25+
<!--suppress CssUnknownTarget -->
2426
<button
2527
class="mapboxgl-ctrl-icon svg-button"
26-
style="/*noinspection CssUnknownTarget*/background-image: url('forward.svg')"
28+
style="background-image: url('forward.svg')"
2729
@click="(i + 1 < path.length) && i++"
2830
/>
2931
<div class="mapboxgl-ctrl-timeline__label">

0 commit comments

Comments
 (0)