Skip to content

Commit

Permalink
Build assets
Browse files Browse the repository at this point in the history
Build assets with `mix assets.build`.
  • Loading branch information
sviik committed Dec 11, 2023
1 parent 165f143 commit d61d535
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
7 changes: 5 additions & 2 deletions priv/static/phoenix.cjs.js

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

4 changes: 2 additions & 2 deletions priv/static/phoenix.cjs.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions priv/static/phoenix.js
Original file line number Diff line number Diff line change
Expand Up @@ -1030,8 +1030,11 @@ var Phoenix = (() => {
clearTimeout(this.heartbeatTimeoutTimer);
}
onConnOpen() {
if (this.hasLogger())
this.log("transport", `connected to ${this.endPointURL()}`);
if (this.hasLogger()) {
const endPointURL = this.endPointURL();
const prunedURL = endPointURL.replace(/access_token=([^&#/]+)/, "access_token=-pruned-");
this.log("transport", `connected to ${prunedURL}`);
}
this.closeWasClean = false;
this.establishedConnections++;
this.flushSendBuffer();
Expand Down
2 changes: 1 addition & 1 deletion priv/static/phoenix.min.js

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions priv/static/phoenix.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1001,8 +1001,11 @@ var Socket = class {
clearTimeout(this.heartbeatTimeoutTimer);
}
onConnOpen() {
if (this.hasLogger())
this.log("transport", `connected to ${this.endPointURL()}`);
if (this.hasLogger()) {
const endPointURL = this.endPointURL();
const prunedURL = endPointURL.replace(/access_token=([^&#/]+)/, "access_token=-pruned-");
this.log("transport", `connected to ${prunedURL}`);
}
this.closeWasClean = false;
this.establishedConnections++;
this.flushSendBuffer();
Expand Down
4 changes: 2 additions & 2 deletions priv/static/phoenix.mjs.map

Large diffs are not rendered by default.

0 comments on commit d61d535

Please sign in to comment.