Closed (fixed)
Project:
CDN2 Video
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Feb 2009 at 01:47 UTC
Updated:
6 Apr 2009 at 01:30 UTC
The video player was not being loaded intermittently for me. The issue was very strange but is fixed by correcting a js issue.
In cdn2.js, it looks like someone forgot they were in js and not php and used a $ sign in front of a var name causing issues.
Changing:
$oDom.tabs('select', nIndex);
to
oDom.tabs('select', nIndex);
Has fixed the problems for me and the video is now showing as it should.
Comments
Comment #1
kylebrowning commentedThat was a typo and has been committed to Drupal 6 head.