Hi,
I have a problem when I add hyperlink (file attachment section) for Action or Ticket with Firefox/3.6: projectorria hang (attempts to load)
This problem don't exist with Safari or IE
Idea ? A Workaround for projectorria 3.4.4
Thanks
FireFox 3.6 : I did not know it was still existing :silly:
Workaround : get last version 👿
(sorry, I could not help myself)
Seriously 😉 workaround is to replace isHtml5() function in /view/js/projector.js with this one :
function isHtml5() {
if (dojo.isIE && dojo.isIE<=9) {
return false;
} else if (dojo.isFF && dojo.isFF<4) {
return false;
} else {
return true;
}
}
I could not test it, but at least it does not bring regression with FireFox 23.
isHtml5() fonction no exist in view/js/projector.js in 3.4.4
priam:~ steve$ grep -i shtml5 view/js/projector.js
priam:~ steve$
:S
Ah :sick: ! last version !!! ... futur you mean :huh:
isHtml5() fonction no exist in view/js/projector.js in 3.4.4
Arghh ! :S You're right. It is new in 3.5.0 where I implemented the patch.
So for V3.4.4 you'll have te replace every lines
if (dojo.isIE && dojo.isIE<=9) {
with
if ((dojo.isIE && dojo.isIE<=9) || (dojo.isFF && dojo.isFF<4)) {
You should find this in /view/js/projectorDialog.js at lines 721, 757, 777, 1615, 1727, 1747.
Other option is to replace
if (dojo.isIE && dojo.isIE<=9) {
with
if (! isHtml5()) {
and copy code of isHtml5 function in /view/js/projector.js.
Ah :sick: ! last version !!! ... futur you mean :huh:
No, I mean latest version of FireFox !!! :silly:
Hi
I implement your workaround but is't not better... alway hang under Firefox/3.6 🙁
I fear that the patch will not solve the problem
Other idea ?
You should retrieve an error logged in the browser console.
Please report it here.