Forum

Projectorria hang w...
 
Notifications
Retirer tout

Projectorria hang when I add hyperlink (file attachment) for "action" or ticket with firefox

6 Posts
2 Utilisateurs
0 Reactions
5,638 Vu
(@lowengrin)
Posts: 38
Active Member
Début du sujet
 
[#1359]

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


 
Posté : 6 Sep AM 00:099
(@babynus)
Posts: 14952
Membre Admin
 

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.


 
Posté : 6 Sep PM 14:099
(@lowengrin)
Posts: 38
Active Member
Début du sujet
 

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:


 
Posté : 6 Sep PM 16:099
(@babynus)
Posts: 14952
Membre Admin
 

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:


 
Posté : 6 Sep PM 21:099
(@lowengrin)
Posts: 38
Active Member
Début du sujet
 

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 ?


 
Posté : 8 Sep AM 02:099
(@babynus)
Posts: 14952
Membre Admin
 

You should retrieve an error logged in the browser console.
Please report it here.


 
Posté : 8 Sep AM 02:099
Share:
Retour en haut