Skip to content

Commit

Permalink
Build assets
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Nov 4, 2023
1 parent f9952e7 commit 7efbe52
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 32 deletions.
25 changes: 17 additions & 8 deletions priv/static/phoenix_live_view.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_live_view.cjs.js.map

Large diffs are not rendered by default.

25 changes: 17 additions & 8 deletions priv/static/phoenix_live_view.esm.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_live_view.esm.js.map

Large diffs are not rendered by default.

25 changes: 17 additions & 8 deletions priv/static/phoenix_live_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -2152,18 2152,27 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
tagNameEndsAt = i;
tag = html.slice(iAtOpen 1, tagNameEndsAt);
i ;
if (html.slice(i, i 3) === "id=") {
i = 3;
let char2 = html.charAt(i);
if (quoteChars.has(char2)) {
let idStartsAt = i;
for (i; i < html.length; i ) {
if (html.charAt(i) === ">") {
break;
}
if (html.charAt(i) === "=") {
let isId = html.slice(i - 3, i) === " id";
i ;
for (i; i < html.length; i ) {
if (html.charAt(i) === char2) {
let char2 = html.charAt(i);
if (quoteChars.has(char2)) {
let attrStartsAt = i;
i ;
for (i; i < html.length; i ) {
if (html.charAt(i) === char2) {
break;
}
}
if (isId) {
id = html.slice(attrStartsAt 1, i);
break;
}
}
id = html.slice(idStartsAt 1, i);
}
}
break;
Expand Down
8 changes: 4 additions & 4 deletions priv/static/phoenix_live_view.min.js

Large diffs are not rendered by default.

0 comments on commit 7efbe52

Please sign in to comment.