diff options
author | kondou <kondou@ts.unde.re> | 2013-10-12 17:28:20 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-10-12 17:28:20 +0200 |
commit | f828b51ede75ef25db3859156691fb582b76fe39 (patch) | |
tree | 9a51ba1e82c1724783018af6cb55db82cf8e791d /apps/files/templates | |
parent | 3f54e3c783274c4d6b9ccd06bf434fdf0529d324 (diff) | |
download | nextcloud-server-f828b51ede75ef25db3859156691fb582b76fe39.tar.gz nextcloud-server-f828b51ede75ef25db3859156691fb582b76fe39.zip |
Hide files list header, when theres no files to see
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 32a59f1e1a6..af9cdffa5a3 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -42,14 +42,14 @@ <input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions"> </div> -<div id="emptycontent" <?php if (!isset($_['files']) or !$_['isCreatable'] or count($_['files']) > 0 or $_['ajaxLoad']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div> +<div id="emptycontent" <?php if ($_['emptyContent']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div> <input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input> <table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36"> <thead> <tr> - <th id='headerName'> + <th <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?> id='headerName'> <div id="headerName-container"> <input type="checkbox" id="select_all" /> <label for="select_all"></label> @@ -65,8 +65,8 @@ </span> </div> </th> - <th id="headerSize"><?php p($l->t('Size')); ?></th> - <th id="headerDate"> + <th <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?> id="headerSize"><?php p($l->t('Size')); ?></th> + <th <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?> id="headerDate"> <span id="modified"><?php p($l->t( 'Modified' )); ?></span> <?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?> <!-- NOTE: Temporary fix to allow unsharing of files in root of Shared folder --> |