projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd74404
)
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
patch
|
blob
|
blame
|
history
diff --git
a/src/iframe-tarp.js
b/src/iframe-tarp.js
index
b6c3de1
..
42100c6
100644
(file)
--- 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.<!HTMLDivElement>} */
this.tarps = [];