add https:// placeholder for From Link feature. closes #13255
This commit is contained in:
parent
3425c73815
commit
18b5966f3a
|
@ -587,7 +587,7 @@ OC.Upload = {
|
||||||
|
|
||||||
// add input field
|
// add input field
|
||||||
var form = $('<form></form>');
|
var form = $('<form></form>');
|
||||||
var input = $('<input type="text">');
|
var input = $('<input type="text" placeholder="https://…">');
|
||||||
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) {
|
||||||
|
|
Loading…
Reference in New Issue