Merge pull request #13277 from owncloud/pasteurl

add https:// placeholder for From Link feature. closes #13255
This commit is contained in:
Joas Schilling 2015-01-13 12:51:58 +01:00
commit 6d73aff9ad
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ OC.Upload = {
// add input field
var form = $('<form></form>');
var input = $('<input type="text">');
var input = $('<input type="text" placeholder="https://…">');
var newName = $(this).attr('data-newname') || '';
var fileType = 'input-' + $(this).attr('data-type');
if (newName) {