Skip to content

Commit

Permalink
Merge pull request #8 from aaronmars/MTP-4377
Browse files Browse the repository at this point in the history
Fix import paths in Plug subclasses
  • Loading branch information
aaronmars authored Oct 25, 2016
2 parents 328fecd + 30a6d31 commit 2c10a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/progressPlugBrowser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Plug } from './plug.js';
import { Plug } from '../plug.js';
function _doXhr({ xhr, body, progressInfo }) {
return new Promise((resolve, reject) => {
xhr.onreadystatechange = function(e) {
Expand Down
2 changes: 1 addition & 1 deletion lib/progressPlugNode.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import { Plug } from './plug.js';
import { Plug } from '../plug.js';
export class ProgressPlugNode extends Plug {}

0 comments on commit 2c10a7e

Please sign in to comment.