Skip to content

Commit

Permalink
Renamed index.js to canvasRenderer.js.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmester committed Jul 31, 2020
1 parent 8f986db commit 607b637
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/apis/drawIcon.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { iconGenerator } from "../renderer/iconGenerator";
import { isValidHash, computeHash } from "../common/hashUtils";
import { CanvasRenderer } from "../renderer/canvas/index";
import { CanvasRenderer } from "../renderer/canvas/canvasRenderer";

/**
* Draws an identicon to a context.
Expand Down
2 changes: 1 addition & 1 deletion src/apis/toPng.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import canvasRenderer from "canvas-renderer";
import { iconGenerator } from "../renderer/iconGenerator";
import { isValidHash, computeHash } from "../common/hashUtils";
import { CanvasRenderer } from "../renderer/canvas/index";
import { CanvasRenderer } from "../renderer/canvas/canvasRenderer";

/**
* Draws an identicon as PNG.
Expand Down
2 changes: 1 addition & 1 deletion src/apis/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { isValidHash, computeHash } from "../common/hashUtils";
import { HASH_ATTRIBUTE, ICON_SELECTOR, VALUE_ATTRIBUTE, documentQuerySelectorAll } from "../common/dom";
import { SvgRenderer } from "../renderer/svg/svgRenderer";
import { SvgElement } from "../renderer/svg/svgElement";
import { CanvasRenderer } from "../renderer/canvas/index";
import { CanvasRenderer } from "../renderer/canvas/canvasRenderer";
import { ICON_TYPE_CANVAS, ICON_TYPE_SVG, getIdenticonType } from "../common/dom";

/**
Expand Down
File renamed without changes.

0 comments on commit 607b637

Please sign in to comment.