X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/75c98902b1f1be9a4cd1429886c3089c568e532b..76206e9b4658320aa26ba61cd6c19d2ed0a3ed2e:/index.php

diff --git a/index.php b/index.php
index cd0eed8..11205a4 100644
--- a/index.php
+++ b/index.php
@@ -98,25 +98,35 @@ else {
 
     <div id="upload_finished_download_page">
     <p>
-          <a id="upload_link" href=""><?php echo t('Download page') ?></a>
-          <a id="upload_link_email" href=""><img id="upload_image_email"/></a>
+        <a id="upload_link" href=""><?php echo t('Download page') ?></a>
+        <a id="upload_link_email" href=""><img id="upload_image_email"/></a>
+        <button id="upload_link_button">✂</button>
     </p>
     </div>
 
     <?php if ($cfg['preview'] == true) {
     ?>
     <div id="upload_finished_preview">
-    <p><a id="preview_link" href=""><?php echo t('View link') ?></a></p>
+    <p>
+        <a id="preview_link" href=""><?php echo t('View link') ?></a>
+        <button id="preview_link_button">✂</button>
+    </p>
     </div>
     <?php
 } ?>
 
     <div id="upload_direct_download">
-    <p><a id="direct_link" href=""><?php echo t('Direct download link') ?></a></p>
+    <p>
+        <a id="direct_link" href=""><?php echo t('Direct download link') ?></a>
+        <button id="direct_link_button">✂</button>
+    </p>
     </div>
 
     <div id="upload_delete">
-    <p><a id="delete_link" href=""><?php echo t('Delete link') ?></a></p>
+    <p>
+        <a id="delete_link" href=""><?php echo t('Delete link') ?></a>
+        <button id="delete_link_button">✂</button>
+    </p>
     </div>
 
     <div id="upload_validity">
@@ -262,5 +272,10 @@ else {
         document.getElementById('max_file_size').innerHTML = '<?php
              echo t('You browser may not support HTML5 so the maximum file size is ') . jirafeau_get_max_upload_size();
              ?>';
+
+    addCopyListener('upload_link_button', 'upload_link');
+    addCopyListener('preview_link_button', 'preview_link');
+    addCopyListener('direct_link_button', 'direct_link');
+    addCopyListener('delete_link_button', 'delete_link');
 </script>
 <?php require(JIRAFEAU_ROOT . 'lib/template/footer.php'); ?>