-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/WWBN/AVideo/issues/9764
- Loading branch information
Daniel Neto
committed
Jan 2, 2025
1 parent
bf53984
commit 52d6acc
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |