From 0d9ed3ab9f7fe2ea4102fca7d752656d80a9973a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=9Cmit=20Seren?= Date: Mon, 8 Feb 2016 13:04:32 +0100 Subject: [PATCH] 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 --- src/iframe-tarp.js | 2 ++ 1 file changed, 2 insertions(+) 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 = []; -- 2.7.4