Skip to content

Commit

Permalink
Prevent warning on unimplemented operator thrown for OPS.dependency
Browse files Browse the repository at this point in the history
(cherry picked from commit acc0a0f)
  • Loading branch information
wojtekmaj authored and IsaacSchemm committed Apr 6, 2018
1 parent ba24219 commit 8e23d68
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/display/svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,9 @@ SVGGraphics = (function SVGGraphicsClosure() {
case OPS.beginText:
this.beginText();
break;
case OPS.dependency:
// Handled in loadDependencies, warning should not be thrown
break;
case OPS.setLeading:
this.setLeading(args);
break;
Expand Down

0 comments on commit 8e23d68

Please sign in to comment.