-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: clean up code a bit to match proposed changes to devsite (#22)
- Loading branch information
Showing
6 changed files
with
47 additions
and
55 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
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,23 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<!-- See: https://developers.google.com/meet/add-ons/guides/overview#main-stage --> | ||
<head> | ||
<title>Meet Add-on Main Stage</title> | ||
<script src="./main.js"></script> | ||
</head> | ||
|
||
<!-- See: https://developers.google.com/meet/add-ons/guides/overview#main-stage --> | ||
<head> | ||
<title>Meet Add-on Main Stage</title> | ||
<script src="./main.js"></script> | ||
</head> | ||
<body style="width: 100%; height: 100%; margin: 0"> | ||
<div>This is the Add-on Main Stage. Everyone in the call can see this.</div> | ||
<div>Hello, world!</div> | ||
|
||
<body style="width: 100%; height: 100%; margin: 0"> | ||
<div>This is the Add-on Main Stage. Everyone in the call can see this.</div> | ||
<div>Hello, world!</div> | ||
|
||
<script> | ||
document.body.onload = () => { | ||
// Library name (`helloWorld`) is defined in the webpack config. | ||
// The function (`initializeMainStage`) is defined in index.js. | ||
helloWorld.initializeMainStage(); | ||
}; | ||
</script> | ||
</body> | ||
|
||
</html> | ||
<script> | ||
document.body.onload = () => { | ||
// Library name (`helloWorld`) is defined in the webpack config. | ||
// The function (`initializeMainStage`) is defined in main.js. | ||
helloWorld.initializeMainStage(); | ||
}; | ||
</script> | ||
</body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<!-- See: https://developers.google.com/meet/add-ons/guides/overview#side-panel --> | ||
<head> | ||
<title>Meet Add-on Side Panel</title> | ||
<script src="./main.js"></script> | ||
</head> | ||
|
||
<!-- See: https://developers.google.com/meet/add-ons/guides/overview#side-panel --> | ||
<head> | ||
<title>Meet Add-on Side Panel</title> | ||
<script src="./main.js"></script> | ||
</head> | ||
<body style="width: 100%; height: 100%; margin: 0"> | ||
<div>This is the Add-on Side Panel. Only you can see this.</div> | ||
<button id="start-activity">Launch Activity in Main Stage.</button> | ||
|
||
<body style="width: 100%; height: 100%; margin: 0"> | ||
<div>This is the Add-on Side Panel. Only you can see this.</div> | ||
<button id="start-activity">Launch Activity in Main Stage.</button> | ||
|
||
<script> | ||
document.body.onload = () => { | ||
// Library name (`helloWorld`) is defined in the webpack config. | ||
// The function (`setUpAddon`) is defined in index.js. | ||
helloWorld.setUpAddon(); | ||
}; | ||
</script> | ||
</body> | ||
|
||
</html> | ||
<script> | ||
document.body.onload = () => { | ||
// Library name (`helloWorld`) is defined in the webpack config. | ||
// The function (`setUpAddon`) is defined in main.js. | ||
helloWorld.setUpAddon(); | ||
}; | ||
</script> | ||
</body> | ||
</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