Forum

Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.

Projectorria hang w...
 
Notifications
Clear all

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

6 Posts
2 Users
0 Reactions
5,639 Views
(@lowengrin)
Posts: 38
Active Member
Topic starter
 
[#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


 
Posted : 06 Sep 2013 0H43
(@babynus)
Posts: 14952
Member 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.


 
Posted : 06 Sep 2013 14H23
(@lowengrin)
Posts: 38
Active Member
Topic starter
 

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:


 
Posted : 06 Sep 2013 16H14
(@babynus)
Posts: 14952
Member 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:


 
Posted : 06 Sep 2013 21H40
(@lowengrin)
Posts: 38
Active Member
Topic starter
 

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 ?


 
Posted : 08 Sep 2013 2H00
(@babynus)
Posts: 14952
Member Admin
 

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


 
Posted : 08 Sep 2013 2H21
Share:

Scroll to Top