Skip to content
Snippets Groups Projects
Commit a1038c27 authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #5424 from owncloud/sharing-directlink

Added direct link in public share page
parents dfe38d13 5ac4ec3a
No related branches found
No related tags found
No related merge requests found
...@@ -132,3 +132,14 @@ thead{ ...@@ -132,3 +132,14 @@ thead{
top: -2px; top: -2px;
color: #555; color: #555;
} }
.directLink {
margin-bottom: 20px;
}
.directLink label {
font-weight: normal;
}
.directLink input {
margin-left: 10px;
width: 300px;
}
...@@ -67,4 +67,6 @@ $(document).ready(function() { ...@@ -67,4 +67,6 @@ $(document).ready(function() {
procesSelection(); procesSelection();
}); });
$('#directLink').focus();
}); });
...@@ -95,6 +95,7 @@ ...@@ -95,6 +95,7 @@
</li> </li>
</ul> </ul>
<?php endif; ?> <?php endif; ?>
<div class="directLink"><label for="directLink"><?php p($l->t('Direct link')) ?></label><input id="directLink" type="text" readonly value="<?php p($_['downloadURL']); ?>"></input></div>
<?php endif; ?> <?php endif; ?>
</div> </div>
<footer> <footer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment