mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-09 06:31:22 +00:00
GUACAMOLE-55: Move clipboard handling to own module. Represent clipboard contents with ClipboardData type.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<div class="clipboard">
|
||||
<div ng-if="isText()" class="text-clipboard">
|
||||
<textarea ng-model="content.text" rows="10" cols="40"></textarea>
|
||||
</div>
|
||||
<div ng-if="isImage()" class="image-clipboard">
|
||||
<button ng-click="resetClipboard()" class="reset-button">Clear</button>
|
||||
<img ng-src="{{content.imageURL}}">
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user