diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-03-26 14:47:21 +0000 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-03-26 14:47:21 +0000 |
commit | a323d781a6928a53a76fabbfece8115acdd5f8f4 (patch) | |
tree | c30531d8f553166240558147a22e2a2ce1018b20 /apps | |
parent | e66dda83df536e7bac14d5e5622f10747db63f2f (diff) | |
download | nextcloud-server-a323d781a6928a53a76fabbfece8115acdd5f8f4.tar.gz nextcloud-server-a323d781a6928a53a76fabbfece8115acdd5f8f4.zip |
Revert "add https:// placeholder for From Link feature. closes #13255"
This reverts commit 18b5966f3a7639c6190f58b0d94e05e67200d57a.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/file-upload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 6b0cae209c2..ce8127c9887 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -596,7 +596,7 @@ OC.Upload = { // add input field var form = $('<form></form>'); - var input = $('<input type="text" placeholder="https://…">'); + var input = $('<input type="text">'); var newName = $(this).attr('data-newname') || ''; var fileType = 'input-' + $(this).attr('data-type'); if (newName) { |