-
Notifications
You must be signed in to change notification settings - Fork 5.4k
refactor: html dir #38064
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+77
−104
Merged
refactor: html dir #38064
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
ebb8e45
feat: html dir
itsyoboieltr 9c4401e
fix: path
itsyoboieltr 9835e0e
Update helpers.test.ts
itsyoboieltr 2e6cd71
Update scripts.js
itsyoboieltr e7f84ce
Update scripts.js
itsyoboieltr 90ec351
Update scripts.js
itsyoboieltr 3cba1f0
Update trezor-usb-permissions.html
itsyoboieltr 1316d50
Update loading.html
itsyoboieltr fe1785a
Update sidepanel.html
itsyoboieltr 9e57ffa
Update popup.html
itsyoboieltr 35866ec
Update partial-body.html
itsyoboieltr 4cbb514
fix: newlines
itsyoboieltr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <!doctype html> | ||
| <html dir="ltr"> | ||
| <head> | ||
| <meta charset="utf-8" /> | ||
| </head> | ||
| <body> | ||
| <script src="../../scripts/load/bootstrap.ts" defer></script> | ||
| <script src="../../scripts/load/background.ts" defer></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| <!doctype html> | ||
| <html dir="ltr"> | ||
| <head> | ||
| <%~ include("html/partials/partial-head.html") %> | ||
| </head> | ||
| <body> | ||
| <%~ include("html/partials/partial-body.html") %> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| <!doctype html> | ||
| <html dir="ltr"> | ||
| <head> | ||
| <%~ include("partial-head.html", { | ||
| <%~ include("html/partials/partial-head.html", { | ||
| title: it.isTest ? "MetaMask Dialog" : null, | ||
| viewport: "width=device-width, initial-scale=1.0" | ||
| }) %> | ||
| </head> | ||
| <body class="notification"> | ||
| <%~ include("partial-body.html") %> | ||
| <%~ include("html/partials/partial-body.html") %> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| <!doctype html> | ||
| <html style="width:400px; height:600px;" dir="ltr"> | ||
| <head> | ||
| <%~ include("partial-head.html") %> | ||
| <%~ include("html/partials/partial-head.html") %> | ||
| </head> | ||
| <body style="width:400px; height:600px;"> | ||
| <%~ include("partial-body.html") %> | ||
| <%~ include("html/partials/partial-body.html") %> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| <!doctype html> | ||
| <html style="width:100%; height:100%;" dir="ltr"> | ||
| <head> | ||
| <%~ include("partial-head.html") %> | ||
| <%~ include("html/partials/partial-head.html") %> | ||
| </head> | ||
| <body style="width:100%; height:100%;"> | ||
| <%~ include("partial-body.html") %> | ||
| <%~ include("html/partials/partial-body.html") %> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| <div id="app-content"> | ||
| <img class="loading-logo" src="../../images/logo/metamask-fox.svg" alt="" loading="lazy" /> | ||
| <img class="loading-spinner" src="../../images/spinner.gif" alt="" loading="lazy" /> | ||
| <div class="loading-timeout-message" aria-live="polite" role="status"></div> | ||
| </div> | ||
| <div id="popover-content"></div> | ||
| <script src="../../scripts/load/bootstrap.ts" defer></script> | ||
| <script src="../../scripts/load/ui.ts" defer></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.