simile-widgets / ancient-simile-widgets

Original simile repository exported from code.google.com/p/simile-widgets
http://simile.mit.edu/
40 stars 20 forks source link

Bug in Timeline.EventUtils.decodeEventElID() #474

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Any call to this method in 2.3.0 will hit the bug.  

Line 1751 in timeline-bundle.js reads:

var A=E.getEventSource.getEvent(D[4]);

It should read:

var A=E.getEventSource().getEvent(D[4]);

Same issue is present in non minified form in event-utils.js

Original issue reported on code.google.com by santanu....@gmail.com on 27 Apr 2012 at 8:13