<?php
$loadingBtnLoader = $this->loader('LoadingIndicator');
?>
<script type="text/javascript">
    $('#yes_button').click(function() {
        $('#yes_button').hide();
        $('#no_button').hide();
        $('#wait_button').show();
        $('.please-wait-msg').show();
        $('.delete-msg').hide();
    });
    /** turn off any currently playing video player */
    turnOffVideoPlayer();
</script>
<center class="text-left">
    <p class="textMedium delete-msg"><?=$this->translate('Do you really want to delete this video?')?></p>
</center>
<center class="text-left notDisplay please-wait-msg">
    <p class="textMedium"><?=$this->translate('Please wait...')?></p></br>
    <div class="LoadingIndicatorContainer">
        <div class="LoadingIndicator"><?=$loadingBtnLoader;?></div>
    </div>
</center>

