From: Tanner Linsley Date: Tue, 16 Jun 2015 04:44:06 +0000 (-0600) Subject: Responsive used proper "each" from helpers X-Git-Tag: 2.0.0-alpha3~10^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b3424bd09af76f79967d0314ea229ff95ca38e3;p=thirdparty%2FChart.js.git Responsive used proper "each" from helpers --- diff --git a/src/core/core.responsive.js b/src/core/core.responsive.js index 73c12ea30..23295feba 100644 --- a/src/core/core.responsive.js +++ b/src/core/core.responsive.js @@ -15,7 +15,7 @@ return function() { clearTimeout(timeout); timeout = setTimeout(function() { - each(Chart.instances, function(instance) { + helpers.each(Chart.instances, function(instance) { // If the responsive flag is set in the chart instance config // Cascade the resize event down to the chart. if (instance.options.responsive) {