From: Ümit Seren Date: Mon, 8 Feb 2016 12:04:32 +0000 (+0100) Subject: Bugfix: Import missing dygraph-utils.js X-Git-Tag: v2.0.0~30^2 X-Git-Url: https://adrianiainlam.tk/git/?p=dygraphs.git;a=commitdiff_plain;h=0d9ed3ab9f7fe2ea4102fca7d752656d80a9973a Bugfix: Import missing dygraph-utils.js The IFrameTarp.prototype.cover function calls `findPos` from the `dygraph-utils.js` file but does not import it. This fixes #724 --- diff --git a/src/iframe-tarp.js b/src/iframe-tarp.js index b6c3de1..42100c6 100644 --- a/src/iframe-tarp.js +++ b/src/iframe-tarp.js @@ -23,6 +23,8 @@ * * @constructor */ +import * as utils from './dygraph-utils'; + function IFrameTarp() { /** @type {Array.} */ this.tarps = [];