-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.8-SNAPSHOT
-
Fix Version/s: 5.8
-
Component/s: DAM, Seam / JSF UI
-
Tags:
Currently we have
nuxeo-dam-jsf/src/main/resources/web/nuxeo.war/dam/incl/bulk_import_assets_box.xhtml
<h:form enctype="multipart/form-data" id="#{fancyboxFormId}" disableDoubleClickShield="true">
because if the browser does not support html5, the form renders a rich:fileUpload (which cannot work with double click shield) instead of D&D zone. But when html5 is supported we should enable the double click shield:
nuxeo-dam-jsf/src/main/resources/web/nuxeo.war/dam/incl/bulk_import_assets_box.xhtml
<h:form enctype="multipart/form-data" id="#{fancyboxFormId}" disableDoubleClickShield="#{!useHtml5DragAndDrop}">