Merge pull request #15226 from owncloud/fix-upload-placeholder

Fix placeholder in files upload
This commit is contained in:
Joas Schilling 2015-03-26 16:50:43 +01:00
commit 02ffc6c6ee
1 changed files with 1 additions and 1 deletions

View File

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