Brian wrote: > Hello, and thanks for developing such great visualization tools. > > I was working from this example in order to produce multiple timelines > from one data source in my exhibit - > http://people.csail.mit.edu/dfhuynh/projects/timeline-exhibit/timeline-exhibit2.html > > My exhibit loads without errors, however when I try to select from one > of the facets or search for text, I get the following errors, then the > page never loads. I tried to search for "Old" in the Search box of the > exhibit referenced in the URL above, but noted the same errors. > > Error 1 - Caught exception: undefined / Details: ReferenceError: > console is not defined > Error 2 - Caught exception: Error adding action {Text search Old} to > history / Details: TypeError: invalid 'in' operand F > > I'm not that versed in Javascript etc., so any help would be greatly > appreciated. > If you look in http://people.csail.mit.edu/dfhuynh/projects/timeline-exhibit/filtered-sources.js you'd see console.log(...)
"console" is a variable available in Firefox with Firebug installed. It's also available in Safari and Chrome. But otherwise, it's not available, thus causing the "console is not defined" error. Use a copy of that file where the console.log calls are removed. David --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SIMILE Widgets" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/simile-widgets?hl=en -~----------~----~----~----~------~----~------~--~---
