in openmeetings-web/src/main/front/src/wb/wb-player.js [31:95]
function _initControls(_o) {
trg = new fabric.Triangle({
left: 2.7 * rad
, top: _o.height - 2.5 * rad
, visible: _o.status.paused
, angle: 90
, width: rad
, height: rad
, stroke: mainColor
, fill: mainColor
});
rectPause1 = new fabric.Rect({
left: 1.6 * rad
, top: _o.height - 2.5 * rad
, visible: !_o.status.paused
, width: rad / 3
, height: rad
, stroke: mainColor
, fill: mainColor
});
rectPause2 = new fabric.Rect({
left: 2.1 * rad
, top: _o.height - 2.5 * rad
, visible: !_o.status.paused
, width: rad / 3
, height: rad
, stroke: mainColor
, fill: mainColor
});
circle = new fabric.Circle({
left: rad
, top: _o.height - 3 * rad
, radius: rad
, stroke: mainColor
, strokeWidth: 2
, fill: null
});
play = new fabric.Group([circle, trg, rectPause1, rectPause2]
, {
objectCaching: false
, visible: false
});
cProgress = new fabric.Rect({
left: 3.5 * rad
, top: _o.height - 1.5 * rad
, visible: false
, width: _o.width - 5 * rad
, height: rad / 2
, stroke: mainColor
, fill: null
, rx: 5
, ry: 5
});
progress = new fabric.Rect({
left: 3.5 * rad
, top: _o.height - 1.5 * rad
, visible: false
, width: 0
, height: rad / 2
, stroke: mainColor
, fill: mainColor
, rx: 5
, ry: 5
});
}