Skip to content

Commit

Permalink
Merge pull request #41 from danikaze/local-import
Browse files Browse the repository at this point in the history
Make vendor/tng to use local lib/colors
  • Loading branch information
iurimatias authored May 4, 2020
2 parents d2ab4ef + 00dec75 commit fa63a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/tng.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function PNG(file, options) {
if (!file) throw new Error('no file');

this.options = options || {};
this.colors = options.colors || require('blessed/lib/colors');
this.colors = options.colors || require('../lib/colors');
this.optimization = this.options.optimization || 'mem';
this.speed = this.options.speed || 1;

Expand Down

0 comments on commit fa63a5d

Please sign in to comment.