diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-15 12:50:26 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-15 12:50:26 +0200 |
commit | 2fd5178a0049abc474da551dbdb2ac71fc49dec1 (patch) | |
tree | cffb2f007c4e0249b2386b5fe788ad4a51928db9 /apps/files/js | |
parent | b2f666c98f462da43168ae93a39c8dc886ba847e (diff) | |
download | nextcloud-server-2fd5178a0049abc474da551dbdb2ac71fc49dec1.tar.gz nextcloud-server-2fd5178a0049abc474da551dbdb2ac71fc49dec1.zip |
adjust New file dialog for new styles
Diffstat (limited to 'apps/files/js')
-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 942a07dfccc..02e940aa3c4 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -221,7 +221,7 @@ $(document).ready(function() { $(this).data('text',text); $(this).children('p').remove(); var form=$('<form></form>'); - var input=$('<input>'); + var input=$('<input type="text">'); form.append(input); $(this).append(form); input.focus(); |