Skip to content

Commit

Permalink
https://github.com/WWBN/AVideo/issues/9764
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jan 2, 2025
1 parent bf53984 commit 52d6acc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions plugin/TheaterButton/actionButton.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<button type="button" class="btn btn-default no-outline show-when-is-expanded" onclick="compress();" data-toggle="tooltip" data-placement="bottom" title="<?php echo __("Compress"); ?>">
<?php
if(isMobile()){
return false;
}
?>

<button type="button" class="btn btn-default no-outline show-when-is-expanded hidden-xs" onclick="compress();" data-toggle="tooltip" data-placement="bottom" title="<?php echo __("Compress"); ?>">
<i class="fas fa-compress-arrows-alt"></i> <small class="hidden-sm hidden-xs"><?php echo __("Compress"); ?></small>
</button>

<button type="button" class="btn btn-default no-outline show-when-is-compressed" onclick="expand();" data-toggle="tooltip" data-placement="bottom" title="<?php echo __("Expand"); ?>">
<button type="button" class="btn btn-default no-outline show-when-is-compressed hidden-xs" onclick="expand();" data-toggle="tooltip" data-placement="bottom" title="<?php echo __("Expand"); ?>">
<i class="fas fa-expand-arrows-alt"></i> <small class="hidden-sm hidden-xs"><?php echo __("Expand"); ?></small>
</button>

0 comments on commit 52d6acc

Please sign in to comment.