On Jan 7, 2012, at 12:44 PM, <[email protected]> <[email protected]> wrote:
> Hi, > > I'm using the amazing Timeline widget to create a research timeline website. > So > far so good. But I can't get my html to display the filtering and > highlighting > controls at the bottom of my timeline. I'm trying to use the JFK example (and > others) to show me the code I need but it never works. What am I doing wrong? > (By the way, the footer doesn't display either - I assume the fix to one will > be > the fix to the other.) > > I'm using Firefox 8.0, Windows 7 > > Attached is my timeline.html file and my json data file. > > Thanks in advance for the help, > Kay You are missing the function setupFilterHighlightControls(). If you look at the Christianity Timeline example, you'll see it is loading a script called example.js. Make sure that this file is available on your server and include the <script> tag to load it onto your page. I just tried this and it seems to work as expected. The reason your footer isn't showing is that you've left out a closing >. You have <div id="footer" THE FOOTER</div> which should be <div id="footer">THE FOOTER</div> --Mike -- 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.
