From ed50b032de01e1e20fd31ac0df2e4770f4e3726a Mon Sep 17 00:00:00 2001 From: Durga Madhab Date: Sun, 5 Aug 2018 12:45:54 +0530 Subject: [PATCH] Added requestRenderAllBound (#5138) As requestRenderAllBound is undeifned in `_initStatic` method. Here is [jsfiddle](https://jsfiddle.net/durga598/utaodqwm/). --- src/canvas.class.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/canvas.class.js b/src/canvas.class.js index 96b94ebe..846cfcd4 100644 --- a/src/canvas.class.js +++ b/src/canvas.class.js @@ -61,6 +61,7 @@ initialize: function(el, options) { options || (options = { }); this.renderAndResetBound = this.renderAndReset.bind(this); + this.requestRenderAllBound = this.requestRenderAll.bind(this); this._initStatic(el, options); this._initInteractive(); this._createCacheCanvas();