From f6b762476a0f51dd9e78f7fcc98acb5f8c27a4a3 Mon Sep 17 00:00:00 2001 From: Mike Hatfield Date: Wed, 11 Mar 2009 23:18:16 +0000 Subject: [PATCH] Merged V3.1 to HEAD 13258: ETHREEOH-1347 - Incorrect displaying of "Copy to..." dialog at DocLib page using IE6 13259: ETHREEOH-1327 - Incorrect display of Invite Users on Site members page in IE 13260: ETHREEOH-271, ETHREEOH-509, ETHREEOH-1267, ETHREEOH-272. Prevented (confusing and unnecessary) ability to type into File Browse controls 13272: ETHREEOH-1360 - Links don't show up in the Search Results page 13273: More TinyMCE features added to wiki editor. Safe-tags functions updated accordingly. 13380: Additions fix for ETHREEOH-1360 - Links don't show up in the Search Results page git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13583 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/web/scripts/ajax/doclist.js | 1 + source/web/scripts/ajax/myspaces.js | 2 ++ 2 files changed, 3 insertions(+) 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);