aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-17 10:46:03 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-17 10:46:03 +0200
commit7e4dcd268f6cb6618600718a51c4d882e9027829 (patch)
treeadf2022f6d43e5d3ad00e94fa5129c3fa71719de /apps/files/js/filelist.js
parent164502477d8eac293ea002d39378be846bcc733c (diff)
downloadnextcloud-server-7e4dcd268f6cb6618600718a51c4d882e9027829.tar.gz
nextcloud-server-7e4dcd268f6cb6618600718a51c4d882e9027829.zip
vertically center rename input box
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 536becad49a..10a297ddadb 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -199,7 +199,7 @@ var FileList={
tr=$('tr').filterAttr('data-file',name);
tr.data('renaming',true);
td=tr.children('td.filename');
- input=$('<input class="filename"/>').val(name);
+ input=$('<input type="text" class="filename"/>').val(name);
form=$('<form></form>');
form.append(input);
td.children('a.name').hide();