Hi All,
Then set Timeline_parameters='bundle=false';
Based on this section within timeline-api.js:
/*
* Include non-localized files
*/
if (bundle) {
includeJavascriptFiles(Timeline.urlPrefix, [ "timeline-bundle.js" ]);
includeCssFiles(Timeline.urlPrefix, [ "timeline-bundle.css" ]);
} else {
includeJavascriptFiles(Timeline.urlPrefix + "scripts/", javascriptFiles);
includeCssFiles(Timeline.urlPrefix + "styles/", cssFiles);
}
I included all the necessary .js and css files specified by the arrays javascriptFiles and cssFiles, stated earlier in timeline-api.js. Similarly, with simile-ajax-api.js, I set params: { bundle:"false" } and included the necessary files as well.
So with date-time.js inside the timeline_ajax script files and labellers.js in the timeline_js script files.
My problem is, I still can't get my custom units to render. Just wanted to make sure there wasn't something obviously wrong with my setup.
Thanks!
Steve