Skip to content

Commit

Permalink
v3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Dec 11, 2020
1 parent 03336f0 commit 60453bb
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bugbattle",
"version": "3.1.3",
"version": "3.1.4",
"main": "build/index.js",
"types": "index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion published/latest/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion published/latest/index.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions published/latest/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions src/demo/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ class App {
// Enable the automatic crash detector.
BugBattle.enableCrashDetector(true);

// console.error("Y");

const feedbackButton = document.querySelector("#feedback-button");
if (feedbackButton) {
feedbackButton.onclick = function () {
Expand Down
3 changes: 2 additions & 1 deletion src/lib/BugBattle.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ class BugBattle {
const self = this;
if (
document.readyState === "complete" ||
document.readyState === "loaded"
document.readyState === "loaded" ||
document.readyState === "interactive"
) {
self.checkForInitType();
} else {
Expand Down

0 comments on commit 60453bb

Please sign in to comment.