http://forums.alfresco.com/en/viewtopic.php?f=9&t=15501
In summery, it started to work with FF3 after the following modification:
- Disable Flash component by editing file-upload.jsr:
change:
this.hasRequiredFlashPlayer = Alfresco.util.hasRequiredFlashPlayer(9, 0, 45)
this.hasRequiredFlashPlayer = false
to: - Modify html-upload.js, you have to correct line 219:
// If it hasn't load the gui (template) from the server
217 Alfresco.util.Ajax.request(
218 {
219 url: Alfresco.constants.URL_SERVICECONTEXT + "components/upload/html-upload?htmlid=" + this.id,
220 successCallback:
to: "components/upload/html-upload?htmlid=" - and,
Dom.removeClass(this.id + "-dialog", "hidden");
260 /**
261 * Render the server reponse so the contents get inserted in the Dom.
262 * Scripts in the template, such as setMessage(), will also get run
263 * at this moment.
264 */
265 this.widgets.panel.render(document.body);
266
267 //Remove the class hidden to display the panel
268
http://forums.alfresco.com/en/viewtopic.php?f=9&t=15501
No comments:
Post a Comment