-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
honoring bypass go flags when debugging
- Loading branch information
Showing
4 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 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,26 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" style="height: 100%;"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Xgo Test Explorer</title> | ||
<style> | ||
</style> | ||
<script> | ||
window.onload = function(){ | ||
const {renderReact,UrlXgoTestingExplorer} = Open | ||
renderReact(root,UrlXgoTestingExplorer,{ | ||
window.onload = function () { | ||
const { renderReact, UrlXgoTestingExplorer } = Open | ||
renderReact(root, UrlXgoTestingExplorer, { | ||
apiPrefix: "http://localhost:8080" | ||
}) | ||
} | ||
</script> | ||
</head> | ||
|
||
<body style="height: 100%;"> | ||
<div id="root" style="height: 100%; background-color: #F6F7F9;"></div> | ||
</body> | ||
<!--after body because document.body may be null--> | ||
<!--available in CN and Global--> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.js"></script> | ||
<!-- <script src="http://127.0.0.1:8080/build/index.js"></script> --> <!--for local dev--> | ||
<!-- <script src="http://127.0.0.1:8080/build/index.js"></script> for local dev --> | ||
<!-- <script src="http://127.0.0.1:8080/npm-publish/index.js"></script> --> | ||
|
||
</html> |
This file contains 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 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