You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to have multiple timeline widgets loaded into a single page. The last timeload will load properly, but any before will not properly load and render. Firebug shows error: TG_TimelineView.js (line 1392)
this.getTickSeconds[tickUnit] is not a function
pack.seconds = this.getTickSecondstickUnit;
Unfortunately, there are some fundamental issues
in the architecture that foobar multiple instances.
Different errors will come up on different browsers,
also depending on load times, because there are
variables being stored in some closures that are
shared across all instances of timeglider which should
not be shared...
I've got a basic plan for fixing this, but am not planning
to resolve this for a few months at least.
Trying to have multiple timeline widgets loaded into a single page. The
last timeload will load properly, but any before will not properly load and
render. Firebug shows error: TG_TimelineView.js (line 1392)
this.getTickSeconds[tickUnit] is not a function
pack.seconds = this.getTickSecondstickUnit;
Trying to have multiple timeline widgets loaded into a single page. The last timeload will load properly, but any before will not properly load and render. Firebug shows error: TG_TimelineView.js (line 1392)
this.getTickSeconds[tickUnit] is not a function
pack.seconds = this.getTickSecondstickUnit;
var tg1 = $("#60s").timeline({
"min_zoom":37,
"max_zoom":37,
"show_centerline":true,
"data_source":"timeglider/json_tests/js_history.json",
"show_footer":false,
"display_zoom_level": false,
"constrain_to_data": true,
'icon_folder': 'timeglider/js/timeglider/icons/',
"event_overflow":'hide'
});
var tg2 = $("#70s").timeline({
"min_zoom":37,
"max_zoom":37,
"show_centerline":true,
"data_source":"timeglider/json_tests/idaho.json",
"show_footer":false,
"display_zoom_level": false,
"constrain_to_data": true,
'icon_folder': 'timeglider/js/timeglider/icons/',
"event_overflow":'hide'
});
The text was updated successfully, but these errors were encountered: