Skip to content

Commit

Permalink
Delete logger dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LCluber committed May 23, 2021
1 parent 4b92588 commit 91c4b66
Show file tree
Hide file tree
Showing 8 changed files with 5,169 additions and 11,215 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 1.0.9 (May 23th 2021)

- Delete logger dependency

## Version 1.0.8 (June 21th 2020)

- fix loader progress when not using a progress bar
Expand Down
5 changes: 4 additions & 1 deletion dist/orbis.iife.js
Original file line number Diff line number Diff line change
Expand Up @@ -7949,7 +7949,10 @@ var Orbis = (function (exports) {
message: _this.progress.total + " assets loaded"
});
} else {
reject({ success: false, message: "!! " + _this.progress.total + " assets loaded" });
reject({
success: false,
message: "!! " + _this.progress.total + " assets loaded"
});
}
}
}, _this.tick);
Expand Down
5 changes: 4 additions & 1 deletion dist/orbis.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,10 @@ class Loader {
});
}
else {
reject({ success: false, message: `!! ${this.progress.total} assets loaded` });
reject({
success: false,
message: `!! ${this.progress.total} assets loaded`
});
}
}
}, this.tick);
Expand Down
Loading

0 comments on commit 91c4b66

Please sign in to comment.