Re: [Simile-Widgets] One of the big problems with timelines is getting started

2012-09-25 Thread mwra
I think you're on the wrong page. The current docs wiki for Timeline is at http://www.simile-widgets.org/wiki/Timeline. Unfortunately the app home page at http://www.simile-widgets.org/timeline/ has incorrect links to two older docs wikis (old

[Simile-Widgets] Detecting wether timelines has been loaded

2012-09-25 Thread Jeff Roehl
In jQuery, I can detect whether jQuery has been loaded and what version is running with: if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.8.1') Is there something similar I can do with Simile Timelines?   Thanks Jeff Roehl jroe...@yahoo.com (818) 912-7530 -- You received

Re: [Simile-Widgets] Detecting wether timelines has been loaded

2012-09-25 Thread Michael Nosal
if (window.Timeline === undefined) { console.log(Timeline not loaded) } else { console.log(Timeline.version = + Timeline.version) } On Sep 25, 2012, at 7:31 PM, Jeff Roehl wrote: In jQuery, I can detect whether jQuery has been loaded and what version is running with: if

Re: [Simile-Widgets] Detecting wether timelines has been loaded

2012-09-25 Thread Jeremy Boggs
On Sep 25, 2012, at 7:31 PM, Jeff Roehl wrote: In jQuery, I can detect whether jQuery has been loaded and what version is running with: if (window.jQuery === undefined || window.jQuery.fn.jquery !== '1.8.1') Is there something similar I can do with Simile Timelines? You can check to see