diff --git a/source/web/scripts/ajax/doclist.js b/source/web/scripts/ajax/doclist.js index 4cd9725e0b..8ff2a62b83 100644 --- a/source/web/scripts/ajax/doclist.js +++ b/source/web/scripts/ajax/doclist.js @@ -614,6 +614,7 @@ var MyDocs = { fileInput.type = "file"; fileInput.name = "_upload"; fileInput.size = "35"; + fileInput.contentEditable = false; fileInput.setStyle("width", "100%"); fileInput.addClass("docFormItem"); fileInput.injectTop(panel); diff --git a/source/web/scripts/ajax/myspaces.js b/source/web/scripts/ajax/myspaces.js index 37c51e6538..7b24ffbb8c 100644 --- a/source/web/scripts/ajax/myspaces.js +++ b/source/web/scripts/ajax/myspaces.js @@ -608,6 +608,7 @@ var MySpaces = { fileInput.type = "file"; fileInput.name = "_upload"; fileInput.size = "35"; + fileInput.contentEditable = false; fileInput.setStyle("width", "100%"); fileInput.addClass("spaceFormItem"); fileInput.injectTop(panel); @@ -793,6 +794,7 @@ var MySpaces = { fileInput.type = "file"; fileInput.name = "_upload"; fileInput.size = "35"; + fileInput.contentEditable = false; fileInput.setStyle("width", "100%"); fileInput.addClass("spaceFormItem"); fileInput.injectTop(panel);