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
laurglia committed Aug 24, 2022
1 parent e263501 commit 940215e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
3 changes: 1 addition & 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.

3 changes: 1 addition & 2 deletions priv/static/phoenix.js
Original file line number Diff line number Diff line change
Expand Up @@ -1100,12 +1100,11 @@ var Phoenix = (() => {
}, 150 * tries);
}
onConnClose(event) {
let closeCode = event && event.code;
if (this.hasLogger())
this.log("transport", "close", event);
this.triggerChanError();
clearTimeout(this.heartbeatTimer);
if (!this.closeWasClean && closeCode !== 1e3) {
if (!this.closeWasClean) {
this.reconnectTimer.scheduleTimeout();
}
this.stateChangeCallbacks.close.forEach(([, callback]) => callback(event));
Expand Down
2 changes: 1 addition & 1 deletion priv/static/phoenix.min.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions priv/static/phoenix.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1071,12 +1071,11 @@ var Socket = class {
}, 150 * tries);
}
onConnClose(event) {
let closeCode = event && event.code;
if (this.hasLogger())
this.log("transport", "close", event);
this.triggerChanError();
clearTimeout(this.heartbeatTimer);
if (!this.closeWasClean && closeCode !== 1e3) {
if (!this.closeWasClean) {
this.reconnectTimer.scheduleTimeout();
}
this.stateChangeCallbacks.close.forEach(([, callback]) => callback(event));
Expand Down
4 changes: 2 additions & 2 deletions priv/static/phoenix.mjs.map

Large diffs are not rendered by default.

0 comments on commit 940215e

Please sign in to comment.