mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
832 B
29 lines
832 B
<div class="menu">
|
|
<button type="button" class="btn" (click)="rotate(-90)" title="Rotate Left">
|
|
<i class="icon-rotate_left"></i>
|
|
</button>
|
|
|
|
<button type="button" class="btn" (click)="rotate(90)" title="Rotate Right">
|
|
<i class="icon-rotate_right"></i>
|
|
</button>
|
|
|
|
<span class="separator"></span>
|
|
|
|
<button type="button" class="btn" (click)="flip(false)" title="Flip Vertically">
|
|
<i class="icon-flip"></i>
|
|
</button>
|
|
|
|
<button type="button" class="btn rotate 90" (click)="flip(true)" title="Flip Horizontally">
|
|
<i class="icon-flip"></i>
|
|
</button>
|
|
|
|
<span class="separator"></span>
|
|
|
|
<button type="button" class="btn" (click)="reset()" title="Reset">
|
|
<i class="icon-close"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="editor">
|
|
<canvas #editor></canvas>
|
|
</div>
|