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.
40 lines
1.9 KiB
40 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--used to define the camera div-->
|
|
<template name="image_chatter" id="chatterr" xml:space="preserve">
|
|
<t t-name="Composer" t-inherit="mail.Composer" t-inherit-mode="extension"
|
|
owl="1">
|
|
<xpath expr="//*[@t-ref='emoji-button']" position="after">
|
|
<button class="btn border-0 rounded-pill fa fa-camera"
|
|
id="record_image" title="image" aria-label="image"
|
|
type="button"
|
|
t-on-click="onClickCamera">
|
|
</button>
|
|
<div id="myModal" class="modal fade" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Camera</h5>
|
|
<button type="button" class="btn-close"
|
|
t-on-click="OnClickCancel"
|
|
aria-label="Close"/>
|
|
</div>
|
|
<div class="modal-body">
|
|
<video id="videoCam"
|
|
t-ref="videoCam"/>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button id="click_photo"
|
|
class="btn btn-primary"
|
|
t-on-click="ImageCapture">Capture</button>
|
|
<button type="button" class="btn btn-secondary"
|
|
t-on-click="OnClickCancel">Close</button>
|
|
</div>
|
|
<span hidden="hidden">
|
|
<canvas id="canvas" width="1500" height="1000"/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</t>
|
|
</template>
|
|
|