On a mobile device when I rotate the device I get the titled error on the last line of this code:
function _onModeChange() {
var chart = this;
for(var layerName in chart._layersArguments) {
// is this chart in the current mode?
var layerArgs = chart._layersArguments[layerName];
// if this layer should not exist in the current mode
// unlayer it and then save it so we can reattach it
// later.
if (layerArgs.options.modes.indexOf(chart.mode()) === -1) {
It seems like it doesnt cause the code to fully crash, I'm not too familiar with the internals of this code and am hoping for some guidance on what this might be, or if anyone else has already seen this.
On a mobile device when I rotate the device I get the titled error on the last line of this code:
It seems like it doesnt cause the code to fully crash, I'm not too familiar with the internals of this code and am hoping for some guidance on what this might be, or if anyone else has already seen this.