fix #10 - virtual sample / dynamic view : fix Y rotation
This commit is contained in:
parent
0f6b509c33
commit
fd7d9449e5
1 changed files with 3 additions and 3 deletions
|
|
@ -24,13 +24,13 @@
|
||||||
|
|
||||||
<div class="track">
|
<div class="track">
|
||||||
<figure>
|
<figure>
|
||||||
<img :src="currentFile.url" alt="" width="500" height="500">
|
<img :src="currentFile.url" alt="" width="500" height="500" />
|
||||||
</figure>
|
</figure>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<button
|
<button
|
||||||
class="y-up | btn btn--icon"
|
class="y-up | btn btn--icon"
|
||||||
@click="currentY++"
|
@click="currentY++"
|
||||||
:disabled="currentY === yMax.length"
|
:disabled="currentY === yMax"
|
||||||
data-icon="chevron-single-left"
|
data-icon="chevron-single-left"
|
||||||
title="Pivoter vers le haut"
|
title="Pivoter vers le haut"
|
||||||
>
|
>
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="y-down | btn btn--icon"
|
class="y-down | btn btn--icon"
|
||||||
@click="currentX === xMax ? xMax : currentX--"
|
@click="currentY--"
|
||||||
:disabled="currentY === 0"
|
:disabled="currentY === 0"
|
||||||
data-icon="chevron-single-left"
|
data-icon="chevron-single-left"
|
||||||
title="Pivoter vers le bas"
|
title="Pivoter vers le bas"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue