Opera: dojo.analytics.Urchin script handling executes twice
Reported by: |
Les |
Owned by: |
dante |
Priority:
|
low
|
Milestone:
|
1.4
|
Component:
|
Dojox
|
Version:
|
1.3.2
|
Keywords:
|
|
Cc:
|
|
Blocked By:
|
|
Blocking:
|
|
According to Steve Souders Opera handles both onload and onreadystatechange for scripts, so the following code will be executed twice:
n.onload = n.onreadystatechange = dojo.hitch(this, function(e){
if(e && e.type == "load" || re.test(n.readyState)){
this._gotGA();
}
});
Change History (6)
Owner: |
changed from Adam Peller to Dustin Machi
|
Summary: |
dojox/analytics Urchin.js - Opera issue. →
Opera: dojo.analytics.Urchin script handling executes twice
|
Owner: |
changed from Dustin Machi to dante
|
Status: |
new →
assigned
|
Resolution: |
→ fixed
|
Status: |
assigned →
closed
|
Not knowing anything about the code, does this fail in an obvious way? (how would one confirm that this is fixed?) Is it as simple as putting a sentinel around _gotGA?