Skip to content

Commit

Permalink
Moved path-points-interpolator to utils.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderby committed Oct 28, 2016
1 parent d55b846 commit 2225727
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utils/d3-decorators.js
Expand Up @@ -2,7 +2,7 @@ import {utils} from './utils';
import {utilsDom} from './utils-dom';
import {utilsDraw} from './utils-draw';
import {default as d3} from 'd3';
import createPathPointsInterpolator from '../path-points-interpolator';
import createPathPointsInterpolator from './path-points-interpolator';

var d3getComputedTextLength = () => utils.memoize(
(d3Text) => d3Text.node().getComputedTextLength(),
Expand Down
@@ -1,4 +1,4 @@
import {utils} from './utils/utils';
import {utils} from './utils';

export default function interpolatePathPoints(pointsFrom, pointsTo) {

Expand Down
2 changes: 1 addition & 1 deletion test/path-points-interpolator.test.js
@@ -1,7 +1,7 @@
define(function (require) {
var expect = require('chai').expect;
var tauCharts = require('src/tau.charts');
var createInterpolator = require('src/path-points-interpolator').default;
var createInterpolator = require('src/utils/path-points-interpolator').default;
var testUtils = require('testUtils');

describe('path-points-interpolator', function() {
Expand Down

0 comments on commit 2225727

Please sign in to comment.