mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
This commit is contained in:
parent
e66c25145f
commit
2946eb2739
2 changed files with 4 additions and 4 deletions
|
@ -43,7 +43,7 @@ rtmp {
|
||||||
# record all manual;
|
# record all manual;
|
||||||
# record_path /var/www/tmp;
|
# record_path /var/www/tmp;
|
||||||
# record_notify on;
|
# record_notify on;
|
||||||
# record_max_size 2048M;
|
# record_max_size 20480M;
|
||||||
# record_suffix -%d-%b-%y-%T.flv;
|
# record_suffix -%d-%b-%y-%T.flv;
|
||||||
#}
|
#}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ $maxLen = empty($advancedCustom->commentsMaxLength) ? 200 : $advancedCustom->com
|
||||||
|
|
||||||
$disabled = '';
|
$disabled = '';
|
||||||
$content = '';
|
$content = '';
|
||||||
$commentButtonText = '<i class="fas fa-comment fa-2x"></i> <span class="hidden-md hidden-sm hidden-xs " ><br>' . __("Comment") . '</span>';
|
$commentButtonText = '<i class="fas fa-comment fa-2x"></i><span class="hidden-md hidden-sm hidden-xs " ><br>' . __("Comment") . '</span>';
|
||||||
$button = '<button class="btn btn-success " id="saveCommentBtn" style="height: 72px;" onclick="saveComment();">' . $commentButtonText . '</button>';
|
$button = '<button class="btn btn-success " id="saveCommentBtn" style="height: 72px;" onclick="saveComment();">' . $commentButtonText . '</button>';
|
||||||
$button .= '<input type="file" id="commentImageInput" accept="image/jpeg, image/png, image/gif" style="display: none;">';
|
$button .= '<input type="file" id="commentImageInput" accept="image/jpeg, image/png, image/gif" style="display: none;">';
|
||||||
$button .= '<button class="btn btn-primary" id="uploadImageBtn" style="height: 72px;"><i class="fas fa-image fa-2x"></i></button>';
|
$button .= '<button class="btn btn-primary" id="uploadImageBtn" style="height: 72px;"><i class="fas fa-image fa-2x"></i></button>';
|
||||||
|
@ -38,13 +38,13 @@ if (!User::canComment()) {
|
||||||
$users_autocomplete = Layout::getUserAutocomplete(0, 'comment_users_id');
|
$users_autocomplete = Layout::getUserAutocomplete(0, 'comment_users_id');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<div class="col-xs-10 col-lg-8" style="padding-right: 1px;">
|
<div class="col-xs-8" style="padding-right: 1px;">
|
||||||
<textarea class="form-control custom-control" rows="3" style="resize:none" id="comment"
|
<textarea class="form-control custom-control" rows="3" style="resize:none" id="comment"
|
||||||
<?php echo $disabled; ?>><?php
|
<?php echo $disabled; ?>><?php
|
||||||
echo $content;
|
echo $content;
|
||||||
?></textarea>
|
?></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xs-2 col-lg-4" style="padding-left: 1px;">
|
<div class="col-xs-4" style="padding-left: 1px;">
|
||||||
<div class="btn-group btn-group-justified" role="group">
|
<div class="btn-group btn-group-justified" role="group">
|
||||||
<?php echo $button; ?>
|
<?php echo $button; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue