()
| 2179 | ChartInternal.prototype.generateResize = function () { |
| 2180 | var resizeFunctions = []; |
| 2181 | function callResizeFunctions() { |
| 2182 | resizeFunctions.forEach(function (f) { |
| 2183 | f(); |
| 2184 | }); |
| 2185 | } |
| 2186 | callResizeFunctions.add = function (f) { |
| 2187 | resizeFunctions.push(f); |
| 2188 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…