Merge branch 'master' of github.com:ZoneMinder/zoneminder

pull/3971/head
Isaac Connor 2024-09-18 09:33:49 -04:00
commit 8c96d3004b
3 changed files with 4 additions and 1 deletions

View File

@ -23,6 +23,7 @@ var zmPanZoom = {
object.each( function() {
params.obj = this;
params.handleStartEvent = () => {}; //Prevents the progress bar generated by video.js from breaking because it disables preventDefault(), which is enabled by default.
_this.action('enable', params);
});
},
@ -175,6 +176,7 @@ var zmPanZoom = {
},
setTouchAction: function(el) {
if (!el) return;
const currentScale = el.getScale().toFixed(1);
if (currentScale == 1) {
el.setOptions({touchAction: 'manipulation'});

View File

@ -43,6 +43,7 @@
border-radius: 0;
z-index: 11;
font-size: 8px;
overflow:hidden;
}
#alarmCues span.alarmCue {

View File

@ -237,7 +237,7 @@ if ( $Event->Id() and !file_exists($Event->Path()) )
<label for="scale"><?php echo translate('Scale') ?></label>
<?php echo htmlSelect('scale', $scales, $scaleSelected, array('data-on-change'=>'changeScale','id'=>'scale')); ?>
</div>
<div id="streamQualityControl">
<div id="streamQualityControl"<?php echo $video_tag ? ' style="display: none;"':'' ?>>
<label for="streamQuality"><?php echo translate('Stream quality') ?></label>
<?php echo htmlSelect('streamQuality', $streamQuality, $streamQualitySelected, array('data-on-change'=>'changeStreamQuality','id'=>'streamQuality')); ?>
</div>