From 8b3424bd09af76f79967d0314ea229ff95ca38e3 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Mon, 15 Jun 2015 22:44:06 -0600 Subject: [PATCH] Responsive used proper "each" from helpers --- src/core/core.responsive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {