Bugfix: Import missing dygraph-utils.js
authorÜmit Seren <uemit.seren@gmail.com>
Mon, 8 Feb 2016 12:04:32 +0000 (13:04 +0100)
committerÜmit Seren <uemit.seren@gmail.com>
Mon, 8 Feb 2016 12:04:32 +0000 (13:04 +0100)
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

index b6c3de1..42100c6 100644 (file)
@@ -23,6 +23,8 @@
  *
  * @constructor
  */
+import * as utils from './dygraph-utils';
+
 function IFrameTarp() {
   /** @type {Array.<!HTMLDivElement>} */
   this.tarps = [];